🎨 新增世界书模块,将原有的世界书分离

Signed-off-by: Echo <1711788888@qq.com>
This commit is contained in:
2026-02-27 23:15:30 +08:00
parent 689e8af3df
commit 032d0ccdf0
18 changed files with 1880 additions and 8 deletions

View File

@@ -10,6 +10,7 @@ import ForgotPasswordPage from './pages/ForgotPasswordPage'
import ProfilePage from './pages/ProfilePage'
import CharacterManagePage from './pages/CharacterManagePage'
import PresetManagePage from './pages/PresetManagePage'
import WorldbookManagePage from './pages/WorldbookManagePage'
import AdminPage from './pages/AdminPage'
function App() {
@@ -27,6 +28,7 @@ function App() {
<Route path="/profile" element={<ProfilePage />} />
<Route path="/characters" element={<CharacterManagePage />} />
<Route path="/presets" element={<PresetManagePage />} />
<Route path="/worldbooks" element={<WorldbookManagePage />} />
<Route path="/admin" element={<AdminPage />} />
</Routes>
</BrowserRouter>