aboutsummaryrefslogtreecommitdiff
path: root/routes/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.tsx')
-rw-r--r--routes/index.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/routes/index.tsx b/routes/index.tsx
new file mode 100644
index 0000000..df5a04e
--- /dev/null
+++ b/routes/index.tsx
@@ -0,0 +1,16 @@
+import { Head } from "$fresh/runtime.ts";
+import { Handlers } from "$fresh/server.ts";
+import UploadButton from "../islands/UploadButton.tsx";
+
+export default function Home() {
+ return (
+ <>
+ <Head>
+ <title>Package Analyzer</title>
+ </Head>
+ <div>
+ <UploadButton></UploadButton>
+ </div>
+ </>
+ );
+}