Created
June 15, 2017 09:47
-
-
Save sanzhardanybayev/ab53d308cd4a16063b72f1b769f04f30 to your computer and use it in GitHub Desktop.
React Statefull component
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, {PropTypes} from 'react'; | |
import {Link, IndexLink} from 'react-router'; | |
class componentName extends React.Component { | |
constructor(props) { | |
super(props); | |
} | |
componentDidMount(){ | |
} | |
componentWillUnmount(){ | |
} | |
render() { | |
return ( | |
<div> | |
</div> | |
); | |
} | |
} | |
componentName.propTypes = { | |
}; | |
export default componentName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment