/** * @convex-dev/feedback - React Components * * React components for bug reports and feedback collection. * * @example * ```tsx * import { BugReportProvider, BugReportButton } from '@convex-dev/feedback/react'; * import { api } from './convex/_generated/api'; * * function App() { * return ( * * * * * ); * } * ``` */ export { BugReportProvider, useBugReportContext, type BugReportProviderProps, type BugReportContextValue, type ConsoleError, } from './BugReportContext'; export { BugReportButton, type BugReportButtonProps, } from './BugReportButton'; export { ErrorBugReportButton, type ErrorBugReportButtonProps, } from './ErrorBugReportButton'; export { InterviewChat, type InterviewChatProps, type InterviewMessage, type PendingRequest, type GeneratedReport, type InputOption, type InputField, type InputConfig, } from './InterviewChat';