到目前为止,我一直在使用 Redux "connect" 将组件与状态连接起来,我通过以下方式导出组件:
export default connect(mapStateToProps, actions)(ComponentTitle);
我现在想使用 react-css-modules,但我必须在每个组件中使用以下导出:
export default CSSModules(ComponentTitle, styles);
如何导出组件以同时具有这两种功能?
谢谢 :)
到目前为止,我一直在使用 Redux "connect" 将组件与状态连接起来,我通过以下方式导出组件:
export default connect(mapStateToProps, actions)(ComponentTitle);
我现在想使用 react-css-modules,但我必须在每个组件中使用以下导出:
export default CSSModules(ComponentTitle, styles);
如何导出组件以同时具有这两种功能?
谢谢 :)