@hackplan/polaris
Version:
Shopify’s product component library
12 lines (11 loc) • 419 B
JavaScript
import { noop } from '@shopify/javascript-utilities/other';
export default function createFrameContext({ showToast = noop, hideToast = noop, setContextualSaveBar = noop, removeContextualSaveBar = noop, startLoading = noop, stopLoading = noop, } = {}) {
return {
showToast,
hideToast,
setContextualSaveBar,
removeContextualSaveBar,
startLoading,
stopLoading,
};
}