import * as React from 'react'; import { Table, TableBody, TableCell, TableFoot, TableHead, TableHeaderCell, TableRow } from '.'; interface ITablePreviewProps { data?: object[], } export const TablePreview = ({ }: ITablePreviewProps) => ( This is table header 1 This is table header 2 This is table header 3 Cell 1 1 Cell 1 2 Cell 1 3 Cell 2 1 Cell 2 2 Cell 2 3 Cell 3 1 Cell 3 2 Cell 3 3 Cell 4 1 Cell 4 2 Cell 4 3 Cell 5 1 Cell 5 2 Cell 5 3 This is table foot
);