12 lines
183 B
TypeScript
Executable File
12 lines
183 B
TypeScript
Executable File
export default function Page() {
|
|
return (
|
|
<>
|
|
<h1 class={"font-bold text-3xl pb-4"}>My Vike app</h1>
|
|
This page is:
|
|
<ul>
|
|
<li>Rendered to HTML.</li>
|
|
</ul>
|
|
</>
|
|
);
|
|
}
|