我试图将断点与“ @ material-ui / styles”中的{withStyles}一起使用,但调试器显示未定义theme.breakpoints。
我试图用ThemeProvider包装该组件,但是它不起作用。
答案 0 :(得分:0)
用@ material-ui / styles导出的withStyles不提供主题道具,您将使用来自“ @ material-ui / core / styles”的import {withStyles};
答案 1 :(得分:0)
class app extends Component{
render(){
const {classes} = this.props
return (
<div className={classes.root}></div>
)
}
}
const style = theme => ({
root: {
[theme.breakpoints.up('sm'){ //only show on mobile or small screen
display: 'none'
},
}
})
export default withStyles(style)(app)