UNPKG

@hicaru/bearby-react

Version:

<div align="center"> <h1> bearby react web3 wrapper </h1> <strong> Allows react to interact with the bearby wallet. </strong> </div> <hr/>

15 lines (10 loc) 287 B
import React from 'react'; import { BearbyContext } from './context'; import { USE_BEARBY_PROVIDER } from './errors'; export function useBearby() { const context = React.useContext(BearbyContext); if (!context) { throw new Error(USE_BEARBY_PROVIDER); } return context; }