Last active
November 16, 2018 15:51
-
-
Save wsrast/19351517b2b652f7b4f16bfc9311aba4 to your computer and use it in GitHub Desktop.
Simple React functional component (meatier)
This file contains hidden or 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
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