brf/client/public/components/other_page.tsx
2025-11-24 17:09:09 +01:00

16 lines
254 B
TypeScript

import { h } from 'preact'
import Head from './head.ts'
const OtherPage = () => (
<section>
<Head>
<title> : Other</title>
</Head>
<h1>Other Page</h1>
<p>Not the page where it begins</p>
</section>
)
export default OtherPage