Last active
May 1, 2019 18:46
-
-
Save jlittlejohn/8aaca2534d92f0404c87c3a16eab8374 to your computer and use it in GitHub Desktop.
REACT: Class 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
class ComponentName extends React.Component { | |
state = { } | |
render() { | |
return ( <div></div> ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment