Skip to content

Instantly share code, notes, and snippets.

@akursat
Created March 22, 2020 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akursat/ef6d1191c27c018c8491d2e8f8831665 to your computer and use it in GitHub Desktop.
Save akursat/ef6d1191c27c018c8491d2e8f8831665 to your computer and use it in GitHub Desktop.
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