Created
March 22, 2020 10:41
-
-
Save akursat/ef6d1191c27c018c8491d2e8f8831665 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 { render } from "react-dom"; | |
import "./style.scss"; | |
const App = () => { | |
return ( | |
<div> | |
<h1>Up and Running with Parcel</h1> | |
</div> | |
); | |
}; | |
render(React.createElement(App), document.getElementById("root")); | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment