UNPKG

@shopify/app-bridge-react

Version:

**[Join our team and work on libraries like this one.](https://www.shopify.ca/careers)**

23 lines (22 loc) 572 B
import React from 'react'; export interface Props { /** Show/Dismiss loading spinner */ loading: boolean; } /** * Modal Content component * * @remarks * React component which wraps the Shopify App Bridge Modal Content action. * * @public */ declare class ModalContent extends React.Component<Props> { static contextType: React.Context<import("../../../context").IAppBridgeContext>; private modalContent; componentDidMount(): void; componentDidUpdate(): void; syncLoadingStatus(): void; render(): null; } export default ModalContent;