Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Created January 12, 2020 09:29
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 emmabostian/1259dce3b2a55b9efa69b7fbb9fe7c05 to your computer and use it in GitHub Desktop.
Save emmabostian/1259dce3b2a55b9efa69b7fbb9fe7c05 to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
import { MenuRight } from "./Menu";
import "./styles.css";
function App() {
return (
<div className="App">
<MenuRight />
</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