@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
12 lines (11 loc) • 319 B
TypeScript
import * as React from 'react';
export interface PortalProps {
onMount?(): void;
onUnmount?(): void;
container?: () => HTMLElement;
children?: React.ReactNode;
}
export declare function Portal(props: PortalProps): JSX.Element;
export declare namespace Portal {
var displayName: string;
}