wheelshare-frontend/src/components/WheelShareLoggedOut.tsx
Michael Fatemi 98a8e51b7b Organize
2021-07-08 13:51:24 -04:00

14 lines
395 B
TypeScript

import authorizationEndpoint from './Authentication/authorizationEndpoint';
import UILink from './UI/UILink';
import UIPrimaryTitle from './UI/UIPrimaryTitle';
export default function WheelShareLoggedOut() {
return (
<>
<UIPrimaryTitle>WheelShare</UIPrimaryTitle>
<p>To get started, log in with your Ion account.</p>
<UILink href={authorizationEndpoint}>Log in</UILink>
</>
);
}