I want to create a container with simple html template like this:
<div>
<one />
<two />
<three />
</div>
thats all... so how do I use a container with creating it with
connect(mapStateToProps,mapDispatchToProps)(ViewComponent);
as in this way, I have no option for regular render...
any ideas?
thanks