19 lines
392 B
TypeScript
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
|