mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-08-18 15:33:27 +08:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
|
import { StrictMode } from "react";
|
||
|
|
import { createRoot } from "react-dom/client";
|
||
|
|
import { App } from "./test-app";
|
||
|
|
|
||
|
|
createRoot(document.getElementById("root") as HTMLElement).render(
|
||
|
|
<StrictMode>
|
||
|
|
<App />
|
||
|
|
</StrictMode>,
|
||
|
|
);
|