v3/src/design-system/templates/auth-login/AuthLogin.tsx

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>
);