Blame view

天文台pc/tianwentai-ui/src/main.tsx 266 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
  
    import { createRoot } from "react-dom/client";
    import App from "./app/App.tsx";
    import "./styles/index.css";
3a3dc915   王天杨   feat: 稻城亚丁项目批量更新
5
  import { I18nProvider } from "./app/i18n";
bc518174   王天杨   提交两个项目文件
6
  
3a3dc915   王天杨   feat: 稻城亚丁项目批量更新
7
8
9
10
11
  createRoot(document.getElementById("root")!).render(
    <I18nProvider>
      <App />
    </I18nProvider>,
  );
bc518174   王天杨   提交两个项目文件
12