Files
jambonz-webapp/src/main.tsx
Brandon Lee Kitajchuk 76857c0a4b Implement initial Cypress testing configuration (#115)
* Implement initial Cypress testing configuration

* Add docs on cypress for testing

* Cypress cache for GitHub actions
2022-09-26 10:14:41 -07:00

16 lines
305 B
TypeScript

import React from "react";
import { createRoot } from "react-dom/client";
import { MainApp } from "./main-app";
import { Router } from "./router";
import "./styles/index.scss";
const root: Element = document.getElementById("root")!;
createRoot(root).render(
<MainApp>
<Router />
</MainApp>
);