brf/client/public/components/start_page.tsx
2025-12-13 21:12:08 +01:00

12 lines
208 B
TypeScript

import { h, type FunctionComponent } from 'preact'
const StartPage: FunctionComponent = () => (
<section>
<h1>Fart Page</h1>
<p>Haha oh my, fart page.</p>
</section>
)
export default StartPage