React Redux Container Component Webstorm/PHPStorm File Template
import React, { PropTypes, Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
// Import actions here!!
class $NAME extends Component {
  constructor(props, context) {
    super(props, context);
  }
  render() {
    return (
    );
  }
}
$NAME.propTypes = {
  //myProp: PropTypes.string.isRequired
};
function mapStateToProps(state, ownProps) {
  return {
    state: state
  };
}
function mapDispatchToProps(dispatch) {
  return {
    actions: bindActionCreators(actions, dispatch)
  };
}
export default connect(mapStateToProps, mapDispatchToProps)($NAME);