website/index.tsx

12 lines
192 B
TypeScript

export const title = "My website";
export const layout = "layouts/main.tsx";
export default function() {
return (
<>
<h1>Foster Hangdaan</h1>
<p>Welcome!</p>
</>
);
}