15 lines
429 B
TypeScript
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>
|
|
);
|
|
}
|