aboutsummaryrefslogtreecommitdiff
path: root/routes/index.tsx
blob: df5a04e0bd9bbf2ce0981061ecd0d36c39a0226e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
    </>
  );
}