UNPKG

plazbot

Version:

Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.

10 lines (9 loc) 310 B
import { createContext, useContext } from 'react'; export const PlazbotContext = createContext(null); export function usePlazbotContext() { const ctx = useContext(PlazbotContext); if (!ctx) { throw new Error('usePlazbotContext debe usarse dentro de <PlazbotProvider>'); } return ctx; }