16 lines
514 B
TypeScript
16 lines
514 B
TypeScript
import { PageMetaData } from '../../components/patterns/PageMetaData'
|
|
import { ProfileLayout } from '../../components/templates/ProfileLayout'
|
|
import { ResetSent } from '../../components/templates/auth/ResetSent'
|
|
|
|
export default function EmailResetSent(): JSX.Element {
|
|
return (
|
|
<>
|
|
<PageMetaData title="Reset password email sent - Omnivore" path="/auth-reset-sent" />
|
|
<ProfileLayout>
|
|
<ResetSent />
|
|
</ProfileLayout>
|
|
<div data-testid="auth-reset-sent-page-tag" />
|
|
</>
|
|
)
|
|
}
|