@primer/react
Version:
An implementation of GitHub's Primer Design System using React
23 lines (20 loc) • 688 B
JavaScript
import { ErrorDialog } from './ErrorDialog.js';
import { Table as Table$1, TableCellPlaceholder, TableCell, TableRow, TableHeader, TableBody, TableHead, TableSkeleton, TableDivider, TableActions, TableSubtitle, TableTitle, TableContainer } from './Table.js';
import { Pagination } from './Pagination.js';
const Table = Object.assign(Table$1, {
Container: TableContainer,
Title: TableTitle,
Subtitle: TableSubtitle,
Actions: TableActions,
Divider: TableDivider,
Skeleton: TableSkeleton,
Head: TableHead,
Body: TableBody,
Header: TableHeader,
Row: TableRow,
Cell: TableCell,
CellPlaceholder: TableCellPlaceholder,
Pagination,
ErrorDialog
});
export { Table };