demo / frontend /src /index.js
tfrere's picture
first commit
970eef1
raw
history blame
183 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);