Created
August 12, 2018 15:33
-
-
Save suzdalnitski/510770f707dc8817c28ddf0e738620fc to your computer and use it in GitHub Desktop.
Simple Stateless Functional Component
This file contains 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
const MyComponent = ({name}) => ( | |
<div> | |
<h1>Hi, {name}</h1> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment