Skip to content

Instantly share code, notes, and snippets.

@henriqueweiand
Created May 18, 2019 21:24
Show Gist options
  • Save henriqueweiand/eba9f078649512ea8ea54529ab4c3d70 to your computer and use it in GitHub Desktop.
Save henriqueweiand/eba9f078649512ea8ea54529ab4c3d70 to your computer and use it in GitHub Desktop.
import React from 'react';
import { render } from 'react-dom';
class App extends React.Component {
render() {
return (
<h1>
Hello React!!
</h1>
);
}
}
render(<App />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment