16 lines
254 B
TypeScript
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
|