Last active
December 1, 2019 00:02
-
-
Save DanielCender/3021ad7b111cb8ecb4a131e5fc5dfe66 to your computer and use it in GitHub Desktop.
Sample basic React app boilerplate
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"; | |
import ReactDOM from "react-dom"; | |
const App = () => { | |
return <div>Hello World</div>; | |
} | |
var mountNode = document.getElementById("app"); | |
ReactDOM.render(<App/>, mountNode); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment