Spaces:
Sleeping
Sleeping
File size: 290 Bytes
df4a1a2 | 1 2 3 4 5 6 7 8 9 10 11 | 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>
);
}
|