UNPKG

react-floating-whatsapp

Version:

Simple React Component for adding a floating WhatsApp button to your project.

17 lines (16 loc) 306 B
type State = { isOpen: boolean; isDelay: boolean; isNotification: boolean; }; type Action = { type: 'open'; } | { type: 'close'; } | { type: 'delay'; } | { type: 'notification'; }; export declare function reducer(state: State, action: Action): State; export {};