UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

6 lines (5 loc) 167 B
/** * Compute a value on first render and never again, * Equivalent of const [x] = useState(()=> ...) */ export declare function useConst<T>(getValue: () => T): T;