import { menuPages } from "."; import { PageProps } from "../validations/translations/translation"; import { UnAuthorizedPage } from "./unauthorizedpage"; export function retrievePageByUrl(url: string): React.FC { if (url in menuPages) { return menuPages[url as keyof typeof menuPages]; } return UnAuthorizedPage; }