@shopify/app-bridge-host
Version:
App Bridge Host contains middleware and components that are meant to be consumed by the app's host. The middleware and `Frame` component are responsible for facilitating messages posted between the client and host, and used to act on actions sent from the
17 lines (16 loc) • 852 B
TypeScript
import React from 'react';
import { WithFeature } from '../store/reducers/embeddedApp/loading';
import { ComponentProps } from '../types';
/**
* The UI component for the Loading feature
* @public
* */
export declare class Loading extends React.PureComponent<WithFeature, never> {
render(): JSX.Element | null;
}
declare const _default: (React.ComponentClass<ComponentProps, any> & Pick<(React.ComponentClass<WithFeature, any> & typeof Loading) | (React.FunctionComponent<WithFeature> & typeof Loading), "defaultProps" | "prototype">) | (React.FunctionComponent<ComponentProps> & Pick<(React.ComponentClass<WithFeature, any> & typeof Loading) | (React.FunctionComponent<WithFeature> & typeof Loading), "defaultProps" | "prototype">);
/**
* The Loading feature with its reducer, actions and UI component
* @public
* */
export default _default;