2022-07-22 11:20:36 +05:30
|
|
|
import { StrictMode } from "react";
|
|
|
|
import { createRoot } from "react-dom/client";
|
2020-10-25 19:39:57 +05:30
|
|
|
import ExcalidrawApp from "./excalidraw-app";
|
2020-04-13 16:08:39 +02:00
|
|
|
|
2023-07-26 22:34:06 +05:30
|
|
|
import "./excalidraw-app/pwa";
|
2020-10-25 19:39:57 +05:30
|
|
|
import "./excalidraw-app/sentry";
|
2023-07-26 22:34:06 +05:30
|
|
|
window.__EXCALIDRAW_SHA__ = process.env.REACT_APP_GIT_SHA;
|
2022-07-22 11:20:36 +05:30
|
|
|
const rootElement = document.getElementById("root")!;
|
|
|
|
const root = createRoot(rootElement);
|
|
|
|
root.render(
|
|
|
|
<StrictMode>
|
|
|
|
<ExcalidrawApp />
|
|
|
|
</StrictMode>,
|
|
|
|
);
|