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

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