Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Webbrother/d794885c95057b1c77e6831a4181c0c9 to your computer and use it in GitHub Desktop.
Save Webbrother/d794885c95057b1c77e6831a4181c0c9 to your computer and use it in GitHub Desktop.
import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
class $class$ extends Component {
static contextTypes = {
};
static childContextTypes = {
};
static propTypes = {
};
static defaultProps = {
};
constructor(props) {
super(props);
this.state = {
};
}
componentWillMount() {
}
componentWillUnmount() {
}
render() {
const { props } = this;
return (
<div>$END$</div>
);
}
}
export default connect(
state => ({
// mapStateToProps
}), {
// mapDispatchToProps
}
)($class$);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment