Created
November 2, 2017 09:49
-
-
Save ihfazhillah/13a912f2b28cc40bfb82a5e6ca80f79b to your computer and use it in GitHub Desktop.
a simple react component
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'; | |
class Greet extends React.Component { | |
render(){ | |
return <h1>Hello world</h1> | |
} | |
} | |
export default Greet; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment