OpenRewind/src/renderer/main.tsx
alikia2x be6be8280e
add: build
improve: project structure
2024-12-01 06:23:37 +08:00

13 lines
264 B
TypeScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { App } from "./app.tsx";
import "./index.css";
const app = createRoot(document.getElementById("root")!);
app.render(
<StrictMode>
<App />
</StrictMode>
);