UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

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