Skip to content

Instantly share code, notes, and snippets.

@decpk
Created January 28, 2021 07:23
Show Gist options
  • Select an option

  • Save decpk/bb6e2d84dfdc87ce7a93ec478ac3635b to your computer and use it in GitHub Desktop.

Select an option

Save decpk/bb6e2d84dfdc87ce7a93ec478ac3635b to your computer and use it in GitHub Desktop.
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