Created
June 4, 2019 22:33
-
-
Save brandoncc/0e4356acd97dce31377df4b614fe1f49 to your computer and use it in GitHub Desktop.
This file contains 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 Article from "./Article"; | |
import FlashMessage from "./FlashMessage"; | |
import "./styles.css"; | |
function App() { | |
return ( | |
<div className="App"> | |
<Article /> | |
<FlashMessage /> | |
</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