We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76eda0 commit 64f01b2Copy full SHA for 64f01b2
src/partials/Table.js
@@ -19,8 +19,9 @@ export const Table = withSimpleErrorBoundary(props => (
19
</Paper>
20
))
21
22
-export const TableBody = props =>
23
- withSimpleErrorBoundary(<MaterialTableBody {...props} />)
+export const TableBody = withSimpleErrorBoundary(props => (
+ <MaterialTableBody {...props} />
24
+))
25
26
export const TableCell = withSimpleErrorBoundary(props => (
27
<StyledTableCell {...props} />
0 commit comments