Spaces:
Sleeping
Sleeping
| import React from 'react'; | |
| import TableEditor from './components/TableEditor'; | |
| export default function App() { | |
| return ( | |
| <div className="h-screen w-screen bg-[#f8fafc] overflow-hidden font-sans selection:bg-brand-200 selection:text-brand-900"> | |
| <TableEditor /> | |
| </div> | |
| ); | |
| } | |