@shopify/polaris
Version:
Shopify’s admin product component library
8 lines (7 loc) • 313 B
TypeScript
import React from 'react';
import { PortalsContainerElement } from '../../utilities/portals';
export interface PortalsManagerProps {
children: React.ReactNode;
container?: PortalsContainerElement;
}
export declare function PortalsManager({ children, container }: PortalsManagerProps): JSX.Element;