5 lines
317 B
TypeScript
Executable File
5 lines
317 B
TypeScript
Executable File
/// <reference types="react" />
|
|
import { TransitionProps } from './types';
|
|
declare function NoopTransition({ children, in: inProp, onExited, mountOnEnter, unmountOnExit, }: TransitionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
|
|
export default NoopTransition;
|