Files
eh-downloader/routes/index.tsx
2023-05-26 13:31:28 +08:00

17 lines
424 B
TypeScript

import { Head } from "$fresh/runtime.ts";
import GlobalContext from "../components/GlobalContext.tsx";
import Container from "../islands/Container.tsx";
export default function Index() {
return (
<body>
<GlobalContext>
<Head>
<title>EH Downloader</title>
</Head>
<Container />
</GlobalContext>
</body>
);
}