@cerberus-design/react
Version:
The Cerberus Design React component library.
17 lines (14 loc) • 320 B
JavaScript
import { TableTrigger, Tfoot, Td, Tr, Tbody, Th, Thead, Caption, TableEl, TableRoot } from './primitives.js';
const TableParts = {
Root: TableRoot,
Table: TableEl,
Caption,
Header: Thead,
HeaderCol: Th,
Body: Tbody,
Row: Tr,
Cell: Td,
Footer: Tfoot,
Trigger: TableTrigger
};
export { TableParts };