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