import * as React from "react";
import { render } from "react-dom";

/*
  Main App Container
 */
import App from "./App";

render(<App />, document.getElementById("app"));
