CodeRED-Astra/frontend/src/main.jsx
devaine d6378b8eb1
Some checks failed
Build and Deploy / Build Images and Deploy to Server (push) Has been cancelled
fix(repo): we start over, its really that time
2025-10-25 13:28:40 -05:00

10 lines
239 B
JavaScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./app/index.jsx";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>
);