React: it's technically backwards compatible!(jamesknelson.com) |
React: it's technically backwards compatible!(jamesknelson.com) |
What problems do hooks solve better than composition or hoc?
I really haven’t kept up with react, when I last used it 6 months ago I started with the same boilerplate I made in 2017. Could it be things are being added to react that are unnecessary for most small and medium sized apps? I got that feeling when I saw react router 4. At least v6 is moving back towards a simplier api.
Hooks allow a way to abstract all that logic that used to require a component to house it. Components should still only really care about JSX, any logic more complex than an IF statement can live in functions or hooks.