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

19 lines
459 B
XML

import Counter from "../islands/Counter.tsx";
export default function Home() {
return (
<div class="p-4 mx-auto max-w-screen-md">
<img
src="/logo.svg"
class="w-32 h-32"
alt="the fresh logo: a sliced lemon dripping with juice"
/>
<p class="my-6">
Welcome to `fresh`. Try updating this message in the ./routes/index.tsx
file, and refresh.
</p>
<Counter start={3} />
</div>
);
}