Spaces:
Paused
Paused
File size: 352 Bytes
6512187 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { WatchlistProvider } from "./context/WatchlistContext.jsx";
import App from "./App.jsx";
import "./index.css";
createRoot(document.getElementById("root")).render(
<StrictMode>
<WatchlistProvider>
<App />
</WatchlistProvider>
</StrictMode>
);
|