Files
automatisch/packages/web/src/pages/ForgotPassword/index.ee.tsx
2023-03-03 20:13:31 +00:00

15 lines
429 B
TypeScript

import * as React from 'react';
import Box from '@mui/material/Box';
import Container from 'components/Container';
import ForgotPasswordForm from 'components/ForgotPasswordForm/index.ee';
export default function ForgotPassword(): React.ReactElement {
return (
<Box sx={{ display: 'flex', flex: 1, alignItems: 'center' }}>
<Container maxWidth="sm">
<ForgotPasswordForm />
</Container>
</Box>
);
}