faketext / src /index.js
aigorithm's picture
Upload 4 files
a0d0340 verified
raw
history blame contribute delete
186 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.js";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);