'use client'; import * as React from 'react'; export const DialogPortalContext = React.createContext(undefined); export function useDialogPortalContext() { const context = React.useContext(DialogPortalContext); if (context === undefined) { throw new Error('Zest: and must be used within .'); } return context; }