我在MUI中有带有类的withStyles元素。我想在类名中添加处理程序到另一个类。在我的代码中,我标记了这个地方。我希望使处理程序进入tableRow tableCell
。
这怎么办?
const styles = theme => ({
table: {
position: 'absolute',
overflow: 'auto',
'&:focus':{
outline: 'none',
},
},
tableRow: {
display: 'table-row',
'&:not(:last-child) ${tableCell}': { // <- I have problem here
borderBottom: '1px solid rgba(224, 224, 224, 1)'
}
},
tableCell: {
display: 'table-cell',
cursor: 'default',
overflow: 'hidden',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
userSelect: 'none',
'&.select': {
backgroundColor: '#1A237E',
color: 'white'
},
'&.odd': {
backgroundColor: '#F5F5F5'
},
'&.clickable': {
cursor: 'pointer'
}
},
});