Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Last active January 12, 2020 14:18
Show Gist options
  • Save emmabostian/298ba649936bf82dfbbadf6d146e366d to your computer and use it in GitHub Desktop.
Save emmabostian/298ba649936bf82dfbbadf6d146e366d to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
function App() {
return (
<div className="App">
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment