19 lines
421 B
TypeScript
19 lines
421 B
TypeScript
import React from "react";
|
|
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
import App from "./App";
|
|
import { AppContext } from "./AppContext";
|
|
|
|
fetch("config.json")
|
|
.then(res => res.json())
|
|
.then(props =>
|
|
createRoot(document.getElementById("root")).render(
|
|
<React.StrictMode>
|
|
<AppContext.Provider value={props}>
|
|
<App />
|
|
</AppContext.Provider>
|
|
</React.StrictMode>
|
|
)
|
|
);
|