// Simple example of a React "smart" component import { connect } from 'react-redux'; import <%= module_name.capitalize %> from '../components/<%= module_name.capitalize %>'; import * as actions from '../actions/<%= module_name %>ActionCreators'; // Which part of the Redux global state does our component want to receive as props? const mapStateToProps = (state) => ({ }); // Don't forget to actually use connect! // Note that we don't export <%= module_name.capitalize %>, but the redux "connected" version of it. // See https://github.com/reactjs/react-redux/blob/master/docs/api.md#examples export default connect(mapStateToProps, actions)(<%= module_name.capitalize %>);