'use client'; import * as React from 'react'; export const PopoverPortalContext = React.createContext(undefined); export function usePopoverPortalContext() { const context = React.useContext(PopoverPortalContext); if (context === undefined) { throw new Error( 'Zest: PopoverPortalContext is missing. must be placed within .', ); } return context; }