File size: 227 Bytes
30111a8
 
 
 
 
2fe1edf
30111a8
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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>
  );
}