类型错误:无法读取未定义的属性“spacing”
2020-01-03
2142
使用 react 和material UI时出现以下错误
TypeError: Cannot read property 'spacing' of undefined
这是代码:
buttonTeal: {
margin: theme.spacing(1),
color:'white',
backgroundColor: '#009688',
并且它被
const classes = useStyles();
渲染
1个回答
我明白了,我将样式移到了钩子中,并将
export default withStyles(useStyles)(Hookname);
更改为
export default Hookname;
并添加
const useStyles = makeStyles(theme => ({
而不是
const useStyles = theme => ({
Chris Evans
2020-01-03