mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2025-12-19 05:37:43 +00:00
* Implement initial Cypress testing configuration * Add docs on cypress for testing * Cypress cache for GitHub actions
16 lines
305 B
TypeScript
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>
|
|
);
|