You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
445 B
17 lines
445 B
import { StrictMode } from "react"; |
|
import { createRoot } from "react-dom/client"; |
|
import { registerSW } from "virtual:pwa-register"; |
|
|
|
import "../excalidraw-app/sentry"; |
|
|
|
import ExcalidrawApp from "./App"; |
|
|
|
window.__EXCALIDRAW_SHA__ = import.meta.env.VITE_APP_GIT_SHA; |
|
const rootElement = document.getElementById("root")!; |
|
const root = createRoot(rootElement); |
|
registerSW(); |
|
root.render( |
|
<StrictMode> |
|
<ExcalidrawApp /> |
|
</StrictMode>, |
|
);
|
|
|