mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 19:29:51 -04:00
14 lines
395 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|