@mittwald/react-tunnel
Version:
It's like a Portal – but with React components
10 lines • 336 B
TypeScript
import { FC } from 'react';
import { TunnelChildren } from '../TunnelState';
export type TunnelExitChildren = TunnelChildren;
export interface TunnelExitProps {
id?: string;
children?: TunnelExitChildren;
}
export declare const TunnelExit: FC<TunnelExitProps>;
export default TunnelExit;
//# sourceMappingURL=TunnelExit.d.ts.map