Spaces:
Running
Running
File size: 256 Bytes
979db68 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import React, { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./styles.css";
import App from "./App";
const root = createRoot(document.getElementById("root"));
root.render(
<StrictMode>
<App />
</StrictMode>
); |