| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 15 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | import { withStyles } from '@material-ui/core/styles' |
||
| 2 | import TableCell from '@material-ui/core/TableCell' |
||
| 3 | |||
| 4 | 5 | const PostTableCell = withStyles(theme => ({ |
|
| 5 | root: { |
||
| 6 | width: '50%', |
||
| 7 | cursor: 'pointer', |
||
| 8 | whiteSpace: 'nowrap', |
||
| 9 | '&:hover': { |
||
| 10 | color: theme.colors.primary |
||
| 11 | } |
||
| 12 | } |
||
| 13 | }))(TableCell) |
||
| 14 | |||
| 15 | export default PostTableCell |
||
| 16 |