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