@primer/react
Version:
An implementation of GitHub's Primer Design System using React
25 lines (24 loc) • 843 B
JavaScript
import { Table as Table$1, TableActions, TableBody, TableCell, TableCellPlaceholder, TableContainer, TableDivider, TableHead, TableHeader, TableRow, TableSkeleton, TableSubtitle, TableTitle } from "./Table.js";
import { DataTable } from "./DataTable.js";
import { ErrorDialog } from "./ErrorDialog.js";
import { Pagination } from "./Pagination.js";
import { createColumnHelper } from "./column.js";
//#region src/DataTable/index.ts
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
});
//#endregion
export { DataTable, Table, createColumnHelper };