mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
17 lines
424 B
TypeScript
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>
|
|
);
|
|
}
|