aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 8e788d2ebdde30f8e6ffb2b22301d86dba0f82f7 (plain)
1
2
3
4
5
6
7
8
9
10
import React, { createContext } from "react";
import ReactDOM from "react-dom/client";
import "./index.css";
import App from "./App";
import Wrapper from "./App";
const LangContext = createContext("en_US");
const root = ReactDOM.createRoot(
	document.getElementById("root") as HTMLElement
);
root.render(<Wrapper />);