Files
crewli/apps/admin/src/navigation/vertical/index.ts

19 lines
444 B
TypeScript

import appsAndPages from "./apps-and-pages";
import charts from "./charts";
import dashboard from "./dashboard";
import events from "./events";
import forms from "./forms";
import others from "./others";
import uiElements from "./ui-elements";
import type { VerticalNavItems } from "@layouts/types";
export default [
...dashboard,
...events,
...appsAndPages,
...uiElements,
...forms,
...charts,
...others,
] as VerticalNavItems;