UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

6 lines (4 loc) 182 B
import type { LazyExoticComponent, ComponentType } from "react"; export type LazyOrNot<Component extends ComponentType<any>> = | LazyExoticComponent<Component> | Component;