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

19 lines
392 B
TypeScript

import { h } from 'preact'
import PageHeader from './page_header.tsx'
import RegisterForm from './register_form.tsx'
import Section from './section.tsx'
const RegisterPage = () => (
<section>
<PageHeader>Register</PageHeader>
<Section maxWidth='400px'>
<Section.Body>
<RegisterForm />
</Section.Body>
</Section>
</section>
)
export default RegisterPage