Created
January 28, 2021 07:23
-
-
Save decpk/bb6e2d84dfdc87ce7a93ec478ac3635b to your computer and use it in GitHub Desktop.
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
| const React = require( 'react' ); | |
| const CreateReactClass = require( 'create-react-class' ); | |
| const App = CreateReactClass( { | |
| render() { | |
| return React.createElement( 'h1', null, 'Hello world' ); | |
| } | |
| } ) | |
| export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment