我想将我的组件导出到原生基地的connectStyle
和Redux的connect
,但到目前为止还没有运气。如何正确应用于我的组件?
示例:
export default connectStyle('myTheme.myComponent', styles)(myComponent) connect(mapStateToProps, mapDispatchToProps)(myComponent)
答案 0 :(得分:1)
试试这个:
export default connect(mapStateToProps, mapDispatchToProps)(connectStyle('myTheme.myComponent', styles)(myComponent))
这将connect
从connectStyle
返回的组件。 connectStyle
返回一个包含映射到样式的props的组件,然后您可以将其用作将调度和状态连接到props的组件。