Created
November 15, 2016 13:34
-
-
Save Webbrother/d794885c95057b1c77e6831a4181c0c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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