2023-03-27 14:10:48 +00:00
|
|
|
import type { AppRouteObject } from "../routes";
|
2022-08-22 14:29:35 +00:00
|
|
|
import {
|
|
|
|
DashboardRoute,
|
|
|
|
DashboardRouteWithRealm,
|
|
|
|
DashboardRouteWithTab,
|
|
|
|
} from "./routes/Dashboard";
|
2021-07-26 13:36:18 +00:00
|
|
|
|
2023-03-27 14:10:48 +00:00
|
|
|
const routes: AppRouteObject[] = [
|
2022-08-22 14:29:35 +00:00
|
|
|
DashboardRoute,
|
|
|
|
DashboardRouteWithRealm,
|
|
|
|
DashboardRouteWithTab,
|
|
|
|
];
|
2021-07-26 13:36:18 +00:00
|
|
|
|
|
|
|
export default routes;
|