Created
January 12, 2020 13:39
-
-
Save emmabostian/64301d33d9f6b47ca982f14cd5ba98be 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
import React from "react"; | |
import ReactDOM from "react-dom"; | |
import Gallery from "./Gallery"; | |
import "./styles.css"; | |
function App() { | |
return ( | |
<div className="App"> | |
<Gallery /> | |
</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