Terminal-style data table with neon accents.
npx chaos add data-gridimport { DataGrid } from '@/components/chaos/layout/data-grid';
const columns = [
{ key: 'name', header: 'Name' },
{ key: 'status', header: 'Status' },
];
const data = [{ name: 'Server-1', status: 'Online' }];
<DataGrid columns={columns} data={data} />