在重构中使用react-with-styles

时间:2017-12-07 00:38:21

标签: javascript reactjs recompose

有人可以帮助我使用重构组件在更高阶的组件中使用react-with-styles来应用样式吗?

具体来说,我们如何应用本例中所述的样式 - https://github.com/airbnb/react-with-styles#how-to-use - 在更高阶的重构包装中?

1 个答案:

答案 0 :(得分:0)

compose HOC允许您通过合成来创建组件,例如:

export default compose(
    withStyles,
    withState('toggleOn', 'toggle', false)
)(Component)