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> </> ); }