@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
24 lines (21 loc) • 786 B
JavaScript
import { Table as Table$1 } from './Table.js';
import { Body } from './Body.js';
import { Cell } from './Cell.js';
import { Caption } from './Caption.js';
import { Head } from './Head/Head.js';
import { Foot } from './Foot/Foot.js';
import { Row } from './Row/Row.js';
const Table = Table$1;
Table.Body = Body;
Table.Cell = Cell;
Table.Head = Head;
Table.Foot = Foot;
Table.Row = Row;
Table.Caption = Caption;
Table.Body.displayName = 'Table.Body';
Table.Cell.displayName = 'Table.Cell';
Table.Head.displayName = 'Table.Head';
Table.Foot.displayName = 'Table.Foot';
Table.Row.displayName = 'Table.Row';
Table.Caption.displayName = 'Table.Caption';
export { Table, Body as TableBody, Caption as TableCaption, Cell as TableCell, Foot as TableFoot, Head as TableHead, Row as tableRow };