Spaces:
Running
Running
File size: 392 Bytes
3a909c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from 'react';
const EditDataset = () => {
return (
<div className="min-h-screen bg-black text-white flex flex-col items-center justify-center p-4">
<h1 className="text-5xl font-bold tracking-tight">Edit Dataset</h1>
<p className="mt-4 text-xl text-gray-400">
This page is under construction.
</p>
</div>
);
};
export default EditDataset;
|