123 / src /user /UploadPage.tsx
Twan07's picture
Create src/user/UploadPage.tsx
2fe1edf verified
raw
history blame contribute delete
227 Bytes
import UploadZone from "./UploadZone";
export default function UploadPage() {
return (
<div className="min-h-screen p-10">
<h1 className="text-2xl font-bold mb-6">Upload</h1>
<UploadZone />
</div>
);
}