Skip to content

Instantly share code, notes, and snippets.

@wsrast
Last active November 16, 2018 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsrast/19351517b2b652f7b4f16bfc9311aba4 to your computer and use it in GitHub Desktop.
Save wsrast/19351517b2b652f7b4f16bfc9311aba4 to your computer and use it in GitHub Desktop.
Simple React functional component (meatier)
import React from 'react';
const Functional2 = props => {
return (
<div>
Hello from Functional2 and {props.name}!
<br/>
this: {this}
</div>
)
};
export default Functional2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment