Spaces:
Running
Running
File size: 469 Bytes
e470019 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/**
* Entry point of the React application.
*
* This file sets up the root of the React application and renders the main App component
* within a StrictMode wrapper for highlighting potential problems in the application.
*/
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./styles/index.css";
import App from "./App.jsx";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>
);
|