ls-deno/routes/index.tsx

16 lines
331 B
TypeScript
Raw Normal View History

2022-09-27 14:41:17 -05:00
import Counter from "../islands/Counter.tsx";
2022-09-29 20:22:30 -05:00
import { Page } from "../components/Page.tsx";
2022-09-27 14:41:17 -05:00
export default function Home() {
return (
2022-09-29 20:22:30 -05:00
<Page>
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-09-29 20:22:30 -05:00
</Page>
2022-09-27 14:41:17 -05:00
);
}