brf/client/admin/components/change_password_page.tsx
2025-12-18 07:31:37 +01:00

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