brf/client/public/components/start_page.tsx

12 lines
215 B
TypeScript

import { h, type FunctionComponent } from 'preact'
const StartPage: FunctionComponent = () => (
<section>
<h1>Start</h1>
<p>Kommer vettigare info här snart.</p>
</section>
)
export default StartPage