21 lines
908 B
TypeScript
21 lines
908 B
TypeScript
// import { DashboardPage } from "@/components/custom/content/DashboardPage";
|
|
import { DPage } from "@/components/custom/content/DPage";
|
|
import TableCardComponentImproved from "@/components/custom/content/TableCardComponentImproved";
|
|
|
|
const pageIndexMulti: Record<string, Record<string, React.FC<any>>> = {
|
|
"/dashboard": { DashboardPage: TableCardComponentImproved },
|
|
"/build": { DashboardPage: DPage },
|
|
"/build/create": { DashboardPage: DPage },
|
|
"/build/update": { DashboardPage: DPage },
|
|
"/people": { DashboardPage: DPage },
|
|
"/people/create": { DashboardPage: DPage },
|
|
"/people/update": { DashboardPage: DPage },
|
|
"/decision/book": { DashboardPage: DPage },
|
|
"/decision/book/create": { DashboardPage: DPage },
|
|
"/decision/book/update": { DashboardPage: DPage },
|
|
"/assign/employee": { DashboardPage: DPage },
|
|
"/assign/occupant": { DashboardPage: DPage },
|
|
};
|
|
|
|
export { pageIndexMulti };
|