UNPKG

applesauce-react

Version:

React hooks for applesauce

9 lines (8 loc) 264 B
import { useContext } from "react"; import { ActionsContext } from "../providers/actions-provider.js"; export function useActionHub() { const hub = useContext(ActionsContext); if (!hub) throw new Error("Missing ActionsProvider"); return hub; }