@mittwald/react-tunnel
Version:
It's like a Portal – but with React components
11 lines • 415 B
TypeScript
import { FC, PropsWithChildren } from 'react';
export interface TunnelProviderProps extends PropsWithChildren {
/**
* Dedicated id for this tunnel provider. If not provided, the tunnel provider
* will be registered as a global provider.
*/
id?: string;
}
export declare const TunnelProvider: FC<TunnelProviderProps>;
export default TunnelProvider;
//# sourceMappingURL=TunnelProvider.d.ts.map