ls-deno/routes/index.tsx
2022-10-11 17:12:32 -05:00

15 lines
275 B
TypeScript

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