Ag27 Deployer
Deploy Ag27 Table Extractor: 2026-04-29 19:38:38
df4a1a2
raw
history blame contribute delete
290 Bytes
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>
);
}