keycloak_theme/src/tools/LazyOrNot.ts
2024-05-20 15:50:58 +02:00

6 lines
182 B
TypeScript

import type { LazyExoticComponent, ComponentType } from "react";
export type LazyOrNot<Component extends ComponentType<any>> =
| LazyExoticComponent<Component>
| Component;