5 lines
154 B
React
5 lines
154 B
React
|
import { createRoot } from "react-dom/client";
|
||
|
import Nile from "./Nile.jsx";
|
||
|
|
||
|
const root = createRoot(document.getElementById("root")).render(<Nile />);
|