Skip to content
Advertisement

How do you destructure a React useState hook into a namespace?

As a personal preference I wrap React props in namespaces. It helps me organize where different props come from.

With the useState hook I’m doing this.

JavaScript

Is there a more succinct syntax for state setup?

My failed attempt was

JavaScript

Advertisement

Answer

Sounds like the type of thing you could do as part of a custom hook e.g.

JavaScript

In theory, this should give you what you want, but I’ve not tested so use with caution (e.g. I’m not even sure if hooks can be called can be called inside an iterator). – this works fine.

Although, what you are doing is really similar to what useReducer already does, might be worth some experimenting with that hook instead.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement