aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/src/main.tsx
blob: a2f33dbbc8c2c407fb7897f066a27ab0af1e949b (plain)
1
2
3
4
5
6
7
8
9
import React from "react";
import { createRoot } from "react-dom/client";
import { App } from "./App";

createRoot(document.getElementById("root")!).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);