UNPKG

@shopify/app-bridge-host

Version:

App Bridge Host contains components and middleware to be consumed by the app's host, as well as the host itself. The middleware and `Frame` component are responsible for facilitating communication between the client and host, and used to act on actions se

14 lines (13 loc) 941 B
export { withApp } from './decorator.js'; export { MessageTransportType } from './types.js'; export { API_CLIENT_LOAD, API_CLIENT_UNLOAD, REDUCER_LOAD, REDUCER_LOAD_COMPLETE, actionWrapper, apiClientLoad, apiClientUnload, hostLoadCompleteReducer, hostLoadReducer, isLoadReducerAction, isLoadReducerCompleteAction } from './actions.js'; export { useHostContext } from './hooks/useHostContext.js'; export { useRouterContext } from './hooks/useRouterContext.js'; export { default as Frame } from './Frame.js'; export { fromFrame, fromWindow } from '@shopify/app-bridge-core/MessageTransport'; export { buildMiddleware } from './Middleware.js'; export { appBridgeMiddlewareProptype } from './PropTypes.js'; export { Provider } from './Provider.js'; export { createStore } from './store/index.js'; export { HostContext, default as HostProvider, RouterContext } from './HostProvider.js'; export { default as withFeature } from './withFeature.js';