mirror of
https://github.com/emuplace/sudachi.emuplace.app.git
synced 2024-11-30 21:37:53 +01:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App.tsx";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|