Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created May 13, 2017 18:31
Show Gist options
  • Save rohanBagchi/7d321b764c99da915b4c02ed2c111a4b to your computer and use it in GitHub Desktop.
Save rohanBagchi/7d321b764c99da915b4c02ed2c111a4b to your computer and use it in GitHub Desktop.
Basic react component
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