我想用简单的html模板创建一个容器,如下所示:
<div>
<one />
<two />
<three />
</div>
这就是全部...所以如何使用容器创建
connect(mapStateToProps,mapDispatchToProps)(ViewComponent);
就像这样,我没有选择定期渲染...
任何想法?
感谢
答案 0 :(得分:1)
您可以这样编码:
import {one} from ""
import {two} from ""
import {three} from ""
import {component} from react
import {connect} from react-redux
export default class ViewComponent extends component
{
constructor(props)
{
super(props)
}
render()
{
return(
<one />
<two />
<three />
);
}
}
connect(mapStateToProps,mapDispatchToProps)(ViewComponent);
答案 1 :(得分:0)
我会使用无状态函数而不是组件:
this.handler.state = States.READY;
this.emit(':saveState', true);