19 lines
374 B
TypeScript
19 lines
374 B
TypeScript
import { h } from 'preact'
|
|
import LoginForm from './login_form.tsx'
|
|
import PageHeader from './page_header.tsx'
|
|
import Section from './section.tsx'
|
|
|
|
const LoginPage = () => (
|
|
<section>
|
|
<PageHeader>Login</PageHeader>
|
|
|
|
<Section maxWidth='400px'>
|
|
<Section.Body>
|
|
<LoginForm />
|
|
</Section.Body>
|
|
</Section>
|
|
</section>
|
|
)
|
|
|
|
export default LoginPage
|