ls-deno/routes/about.tsx
2022-09-27 14:41:17 -05:00

9 lines
137 B
TypeScript

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