15 lines
275 B
TypeScript
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} />
|
|
</>
|
|
);
|
|
}
|