import React from "react"; import { createRoot } from "react-dom/client"; import { MoneyApp } from "./MoneyApp.jsx"; import "./styles/index.css"; createRoot(document.getElementById("money-root")).render( );