mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
11 lines
235 B
TypeScript
11 lines
235 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import App from "./App.tsx";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|