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