Repository URL to install this package:
Version:
0.9.5 ▾
|
export interface TransitionProps extends React.ClassAttributes<any> {
isVisible?: boolean
children?: React.ReactNode
renderTransition?: TransitionRenderProp
}
// @todo maybe rename createTransitionProp
export interface TransitionRenderProp {
(props: TransitionProps): RenderTransition
}
export interface RenderTransition {
(state: string): React.ReactNode
}