File size: 315 Bytes
c736f72 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import React from "react";
import ReactDOM from "react-dom/client";
import "./styles/index.css";
import App from "./App";
import { applyInitialTheme } from "./lib/theme";
applyInitialTheme();
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);
|