Spaces:
Running
Running
| 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; | |