UNPKG

@livelike/react-native

Version:

LiveLike React Native package

13 lines 435 B
import { WidgetUIPhase } from '../types'; import { useWidgetUIPhase } from './useWidgetUIPhase'; const END_WIDGET_UI_PHASE = [WidgetUIPhase.INTERACTIVE_TIMED_OUT, WidgetUIPhase.EXPIRED]; export const useIsEndWidgetUIPhase = _ref => { let { widgetId } = _ref; const widgetUIPhase = useWidgetUIPhase({ widgetId }); return END_WIDGET_UI_PHASE.includes(widgetUIPhase); }; //# sourceMappingURL=useIsEndWidgetUIPhase.js.map