UNPKG

@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

16 lines (15 loc) 909 B
/// <reference types="react" /> import { ComponentProps } from '../../types'; import { WithFeature } from '../../store/reducers/embeddedApp/navigation'; /** * Handles all actions for the Navigation feature * @public * @requires RouterContext * */ export declare function Navigation(props: WithFeature): null; declare const _default: (import("react").ComponentClass<ComponentProps, any> & Pick<(import("react").ComponentClass<WithFeature, any> & typeof Navigation) | (import("react").FunctionComponent<WithFeature> & typeof Navigation), "defaultProps">) | (import("react").FunctionComponent<ComponentProps> & Pick<(import("react").ComponentClass<WithFeature, any> & typeof Navigation) | (import("react").FunctionComponent<WithFeature> & typeof Navigation), "defaultProps">); /** * The Navigation feature with its reducer, actions and a navigation actions handler * @public * */ export default _default;