musikspider/routes/index.tsx

27 lines
587 B
TypeScript
Raw Normal View History

2023-04-12 07:34:23 +03:00
import { Head } from "$fresh/runtime.ts";
import Counter from "../islands/Counter.tsx";
export default function Home() {
return (
<>
<Head>
<title>Fresh App</title>
</Head>
<div>
<img
src="/logo.svg"
2023-04-12 07:36:56 +03:00
width="64"
height="64"
2023-04-12 07:34:23 +03:00
alt="the fresh logo: a sliced lemon dripping with juice"
/>
<p>
Welcome to `fresh`. Try updating this message in the ./routes/index.tsx
file, and refresh.
2023-04-12 07:36:56 +03:00
Hiiiiiii
2023-04-12 07:34:23 +03:00
</p>
2023-04-12 07:36:56 +03:00
<Counter start={100} />
2023-04-12 07:34:23 +03:00
</div>
</>
);
}