11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
import { PageProps } from "../validations/translations/translation";
|
|
import { UnAuthorizedPage } from "./unauthorizedpage";
|
|
import menuPages from "./index";
|
|
|
|
export function retrievePageByUrl(url: string): React.FC<PageProps> {
|
|
if (url in menuPages) {
|
|
return menuPages[url as keyof typeof menuPages];
|
|
}
|
|
return UnAuthorizedPage;
|
|
}
|