UNPKG

@sky-mavis/tanto-widget

Version:
7 lines 299 B
import {useContext}from'react';import {TantoContext}from'../contexts/tanto/TantoContext.mjs';function useTanto() { const context = useContext(TantoContext); if (context === undefined) { throw new Error('useTanto must be used within a TantoProvider'); } return context; }export{useTanto};