ls-deno/routes/about.tsx

9 lines
137 B
TypeScript

export default function AboutPage() {
return (
<main>
<h1>About</h1>
<p>This is the about page.</p>
</main>
);
}