bc518174
王天杨
提交两个项目文件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { RouterProvider } from "react-router";
import { Toaster } from "sonner";
import { router } from "./routes";
export default function App() {
return (
<div className="app-shell flex min-h-0 w-full flex-1 flex-col">
<div className="app-shell-main flex min-h-0 min-w-0 flex-1 flex-col">
<RouterProvider router={router} />
</div>
<Toaster position="top-center" richColors theme="dark" />
</div>
);
}
|