This commit is contained in:
felinae98
2022-10-07 00:57:12 +08:00
parent 469dc8877b
commit 89787a187d
10 changed files with 392 additions and 50 deletions
+5
View File
@@ -6,6 +6,7 @@ import Auth from './features/auth/Auth';
import { loadGlobalConf, selectGlobalConfLoaded } from './features/globalConf/globalConfSlice';
import GroupManager from './features/subsribeConfigManager/GroupManager';
import SubscribeManager from './features/subsribeConfigManager/SubscribeManager';
import WeightConfig from './features/weightConfig/WeightManager';
import Home from './pages/Home';
import Unauthed from './pages/Unauthed';
@@ -41,6 +42,10 @@ function App() {
path: 'groups/:groupNumber',
element: <SubscribeManager />,
},
{
path: 'weight',
element: <WeightConfig />,
},
],
},
], { basename: '/bison' });