mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
18 lines
472 B
TypeScript
18 lines
472 B
TypeScript
import { Head } from "$fresh/runtime.ts";
|
|
import GlobalContext from "../components/GlobalContext.tsx";
|
|
import Menu from "../components/Menu.tsx";
|
|
import StyleSheet from "../components/StyleSheet.tsx";
|
|
|
|
export default function Index() {
|
|
return (
|
|
<body>
|
|
<GlobalContext>
|
|
<Head>
|
|
<title>EH Downloader</title>
|
|
</Head>
|
|
<Menu></Menu>
|
|
</GlobalContext>
|
|
</body>
|
|
);
|
|
}
|