有没有人可以帮我举一个使用recompose在高阶组件中使用react- with -styles应用样式的例子?
具体地说,我们如何才能将本例中解释的样式-- https://github.com/airbnb/react-with-styles#how-to-use --应用到更高阶的重组包装中?
发布于 2018-07-15 06:12:35
compose HOC允许您通过组合创建组件,例如:
export default compose(
withStyles,
withState('toggleOn', 'toggle', false)
)(Component)
https://stackoverflow.com/questions/47685783
复制