Created
May 13, 2017 18:31
-
-
Save rohanBagchi/7d321b764c99da915b4c02ed2c111a4b to your computer and use it in GitHub Desktop.
Basic react component
This file contains hidden or 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'; | |
const Home = (props) => { | |
return ( | |
<div> | |
Hello World | |
</div> | |
) | |
}; | |
Home.propTypes = {}; | |
export default Home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment