| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 10 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | import { withStyles } from '@material-ui/core/styles' |
||
| 2 | import Table from '@material-ui/core/Table' |
||
| 3 | |||
| 4 | 4 | const CustomTable = withStyles(theme => ({ |
|
| 5 | root: { |
||
| 6 | minWidth: theme.postsTableWidth |
||
| 7 | } |
||
| 8 | }))(Table) |
||
| 9 | |||
| 10 | export default CustomTable |
||
| 11 |