cjjkoko

Results 1 comments of cjjkoko

maybe: function testHook(fn) { const { store } = useReduxContext(); const [state, set] = useState(null); useEfferct((fn) => { const fun = () => { return set(fn(store.getState())); }; const unsub =...