12 lines
215 B
TypeScript
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
|