Skip to content

Instantly share code, notes, and snippets.

@npverni
Last active January 14, 2017 17:40
Show Gist options
  • Save npverni/108748490c27c117b4f9af011b9b51a5 to your computer and use it in GitHub Desktop.
Save npverni/108748490c27c117b4f9af011b9b51a5 to your computer and use it in GitHub Desktop.
Creating a Stateless Functional React Component
const Profile = ({ name, bio }) =>
<div>
<h1>{name}</h1>
<p>{bio}</p>
</div>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment