Skip to content

Commit

Permalink
chore: export module in window
Browse files Browse the repository at this point in the history
  • Loading branch information
darlanalves authored Mar 12, 2024
1 parent 729a083 commit bd95585
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
<title>FileBin</title>
<meta name="theme-color" content="#e91e63" />
<script src="https://cdn.tailwindcss.com"></script>
<script type="module">
import * as bin from '/index.mjs';
window.bin = bin;
</script>
<script type="module">
import {
createBin,
Expand Down Expand Up @@ -303,9 +307,9 @@ <h1 class="text-3xl font-bold tracking-tighter sm:text-5xl xl:text-6xl/none mb-6
>
<div class="flex flex-col space-y-1.5 text-center sm:text-left">
<h2 id="radix-:uploadH1:" class="text-lg font-semibold leading-none tracking-tight mb-4">Upload File</h2>
<p id="radix-:uploadH2:" class="text-sm text-muted-foreground">
<!-- <p id="radix-:uploadH2:" class="text-sm text-muted-foreground">
Drag and drop your files here or click to select files.
</p>
</p> -->
</div>
<div class="grid gap-4 py-4">
<div class="grid w-full gap-1.5">
Expand Down

0 comments on commit bd95585

Please sign in to comment.