mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function (props) {
|
|
return (
|
|
<div>
|
|
<h1>Home</h1>
|
|
<p>This is the home page.</p>
|
|
<p>Anything is insane</p>
|
|
</div>
|
|
);
|
|
}
|