搭建客服端基础框架:路由、侧边栏布局、客服工作台三栏页面

This commit is contained in:
yml2213
2026-07-14 11:03:46 +08:00
parent cbe81f7dfb
commit 7f72e4b46d
13 changed files with 401 additions and 11 deletions
+4 -10
View File
@@ -1,12 +1,6 @@
const App = () => {
return (
<div className="h-screen flex items-center justify-center bg-neutral-50">
<div className="text-center">
<h1 className="text-2xl font-bold text-neutral-900 mb-2"></h1>
<p className="text-neutral-500">线</p>
</div>
</div>
)
}
import { RouterProvider } from 'react-router-dom'
import { router } from './router'
const App = () => <RouterProvider router={router} />
export default App