useMatchEvents
useMatchEvents
supports the same callback functions as the events passed in the config, making it easy to listen for events anywhere.
Example
jsx
import { Hooks } from '@matchain/matchid-sdk-react';
const { useMatchEvents } = Hooks
//other code
useMatchEvents({
onLogin(data){
console.log('login', data);
},
onLogout(){
console.log('logout');
}
})