import "@ant-design/v5-patch-for-react-19"; import React from "react"; import { createRoot } from "react-dom/client"; import App from "./App"; import "./i18n"; const container = document.getElementById("root") as HTMLElement; const root = createRoot(container); root.render( );