import React from "react"; import Box, { BoxProps } from "../Box/Box"; import Link from "../Link/Link"; import Loader from "../Loader/Loader"; import "./status.less"; export { BoxType } from "../Box/Box"; interface Props extends BoxProps {} const Status: React.FC = ({ type, children }) => (
{children}
); export const WhySignIn: React.FC = () => { const external = ( API requests to GitHub need to be authenticated ); return (
Why is it necessary to sign in? This is because all {external}. By signing in, you are able to prove your identity and access authorized resources.
); }; export default Status;