mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 20:27:23 +00:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import App from "./app.tsx";
|
|
import AppContext from "./components/AppContext.tsx";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<AppContext>
|
|
<App />
|
|
</AppContext>
|
|
</StrictMode>,
|
|
);
|