【发布时间】:2021-09-30 18:39:59
【问题描述】:
使用material-ui 的makeStyles,是否有一个选项可以在应用所有样式的对象中传播道具?
即:
const useStyles = makeStyles(theme) => ({
card: {
...props # <- props has stuff like backgroundColor, fontSize etc.
},
thisWorks: {
backgroundColor: (props) => props.backgroundColor,
fontSize: (props) => props.fontSize,
}
})
【问题讨论】:
标签: reactjs material-ui