Skip to content

Commit

Permalink
Fix bug with table body not rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Redande committed Dec 18, 2018
1 parent f76eda0 commit 64f01b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/partials/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ export const Table = withSimpleErrorBoundary(props => (
</Paper>
))

export const TableBody = props =>
withSimpleErrorBoundary(<MaterialTableBody {...props} />)
export const TableBody = withSimpleErrorBoundary(props => (
<MaterialTableBody {...props} />
))

export const TableCell = withSimpleErrorBoundary(props => (
<StyledTableCell {...props} />
Expand Down

0 comments on commit 64f01b2

Please sign in to comment.