import { Table } from "./Table"; import { TableActions } from "./TableActions"; import { Table as TableNew, TableHeader, TableRow, TableHead, TableBody, TableCell, TableFooter, TableCaption, } from "./TableNew"; export const TableNewExampleComponent = () => ( Header Column 1 Header Column 2 Row 1, Cell 1 Row 1, Cell 2 Row 2, Cell 1 Row 2, Cell 2 Row 3(footer), Cell 1 Row 3(footer), Cell 2 Table Caption ); export const TableExampleComponent = () => ( Title Column 1 Title Column 2 Row 1, Cell 1 Row 1, Cell 2 Row 2, Cell 1 Row 2, Cell 2
);