mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 17:16:38 +08:00
* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
import { useRoutes } from 'react-router-dom';
|
|
|
|
// routes
|
|
import MainRoutes from './MainRoutes';
|
|
import OtherRoutes from './OtherRoutes';
|
|
|
|
// ==============================|| ROUTING RENDER ||============================== //
|
|
|
|
export default function ThemeRoutes() {
|
|
return useRoutes([MainRoutes, OtherRoutes]);
|
|
}
|