Skip to content

Instantly share code, notes, and snippets.

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