ls-deno/routes/index.tsx

15 lines
275 B
TypeScript
Raw Normal View History

2022-10-01 14:03:15 -05:00
import Counter from "@/islands/Counter.tsx";
2022-09-27 14:41:17 -05:00
export default function Home() {
return (
2022-10-11 17:12:32 -05:00
<>
2022-09-27 14:41:17 -05:00
<img
src="/logo.svg"
class="w-32 h-32"
alt="the fresh logo: a sliced lemon dripping with juice"
/>
<Counter start={3} />
2022-10-11 17:12:32 -05:00
</>
2022-09-27 14:41:17 -05:00
);
}