sitammeur's picture
Upload 11 files
e470019 verified
raw
history blame
469 Bytes
/**
* 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>
);