UNPKG
@edflex-tech/keycloakify
Version:
latest (5.9.1-rc.4)
5.9.1-rc.4
5.9.1-rc.3
Keycloak theme generator for Reacts app
github.com/garronej/keycloakify
edflex-tech/keycloakify
@edflex-tech/keycloakify
/
src
/
lib
/
tools
/
ReactComponent.ts
5 lines
(3 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
/* eslint-disable @typescript-eslint/ban-types */
import
type
{
FC
,
ComponentClass
}
from
"react"
;
export
type
ReactComponent
<
Props
extends
Record
<
string
,
unknown
> = {}> = (
(
props
:
Props
) =>
ReturnType
<
FC
>) |
ComponentClass
<
Props
>;