nile/src/App.jsx

5 lines
154 B
React
Raw Normal View History

2022-09-09 16:23:24 -04:00
import { createRoot } from "react-dom/client";
import Nile from "./Nile.jsx";
const root = createRoot(document.getElementById("root")).render(<Nile />);