ls-deno/routes/index.tsx
2022-10-01 14:03:15 -05:00

16 lines
329 B
TypeScript

import Counter from "@/islands/Counter.tsx";
import { Page } from "@/components/Page.tsx";
export default function Home() {
return (
<Page>
<img
src="/logo.svg"
class="w-32 h-32"
alt="the fresh logo: a sliced lemon dripping with juice"
/>
<Counter start={3} />
</Page>
);
}