Skip to content

Comment on Show HN: Redux with a UseState Hookparent

Comments

Thanks. It uses useDispatch behind the scenes which I believe has a bit more overhead compared to using connect. It should be comparable performance-wise to using the normal react-redux hooks.

Uh... wait, _what_?

`useDispatch` has absolutely no overhead whatsoever. It's literally just `return store.dispatch`.

There's also less "overhead" in the sense that it's not pre-binding action creators.

If you meant to say `useSelector` here, that also has less overhead than `connect` because it's having to select less state and do fewer comparisons.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.