mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
14 lines
510 B
TypeScript
14 lines
510 B
TypeScript
import * as React from 'react';
|
|
import { Hero } from 'roleypoly/design-system/atoms/hero';
|
|
import { AppShell } from 'roleypoly/design-system/organisms/app-shell';
|
|
import { Preauth, PreauthProps } from 'roleypoly/design-system/organisms/preauth';
|
|
|
|
export type AuthLoginProps = PreauthProps;
|
|
|
|
export const AuthLogin = (props: AuthLoginProps) => (
|
|
<AppShell showFooter user={undefined}>
|
|
<Hero topSpacing={100} bottomSpacing={175}>
|
|
<Preauth {...props} />
|
|
</Hero>
|
|
</AppShell>
|
|
);
|