@shopify/polaris
Version:
Shopify’s admin product component library
13 lines (10 loc) • 412 B
JavaScript
import { useContext } from 'react';
import { FrameContext } from './context.js';
function useFrame() {
const frame = useContext(FrameContext);
if (!frame) {
throw new Error('No Frame context was provided. Your component must be wrapped in a <Frame> component. See https://polaris.shopify.com/components/internal-only/frame for implementation instructions.');
}
return frame;
}
export { useFrame };