File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/eds-core-react/src/components/Table Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ import { Body as TableBody, BodyProps } from './Body'
33import { Cell as TableCell , CellProps } from './Cell'
44import { Head as TableHead , HeadProps } from './Head'
55import { Foot as TableFoot , FootProps } from './Foot'
6- import { Row as tableRow , RowProps } from './Row'
6+ import { Row as TableRow , RowProps } from './Row'
77import { Caption as TableCaption , CaptionProps } from './Caption'
88
99type TableCompoundProps = typeof BaseTable & {
1010 Body : typeof TableBody
1111 Cell : typeof TableCell
1212 Head : typeof TableHead
1313 Foot : typeof TableFoot
14- Row : typeof tableRow
14+ Row : typeof TableRow
1515 Caption : typeof TableCaption
1616}
1717
@@ -21,7 +21,7 @@ Table.Body = TableBody
2121Table . Cell = TableCell
2222Table . Head = TableHead
2323Table . Foot = TableFoot
24- Table . Row = tableRow
24+ Table . Row = TableRow
2525Table . Caption = TableCaption
2626
2727Table . Body . displayName = 'Table.Body'
@@ -37,7 +37,7 @@ export {
3737 TableCell ,
3838 TableHead ,
3939 TableFoot ,
40- tableRow ,
40+ TableRow ,
4141 TableCaption ,
4242}
4343export type {
You can’t perform that action at this time.
0 commit comments