20 lines
431 B
TypeScript
20 lines
431 B
TypeScript
import { h } from 'preact'
|
|
import ForgotPasswordForm from './forgot_password_form.tsx'
|
|
|
|
import PageHeader from './page_header.tsx'
|
|
import Section from './section.tsx'
|
|
|
|
const ForgotPasswordPage = () => (
|
|
<section>
|
|
<PageHeader>Forgot Password</PageHeader>
|
|
|
|
<Section maxWidth='400px'>
|
|
<Section.Body>
|
|
<ForgotPasswordForm />
|
|
</Section.Body>
|
|
</Section>
|
|
</section>
|
|
)
|
|
|
|
export default ForgotPasswordPage
|