Created
January 2, 2018 05:15
-
-
Save MicroBenz/fbf52bda3ed72a6818d98d99647f137f to your computer and use it in GitHub Desktop.
IntroToReact
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'; | |
export default class BasicComponent extends React.Component { | |
render() { | |
return ( | |
<div> | |
<h1>Hello React</h1> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment