@foundbyte/hooks
v1.1.26
Published
react hooks 应用
Downloads
24
Keywords
Readme
hooks
TODO: 赋动字节 hooks
useNotice
dispatch
const key = 'FM952';
const { dispatch } = useNotice();
dispatch({ type: 'message', payload: context }, key);
receive
const key = 'FM952';
useNotice(key, (data) => {
console.log(data.payload);
})