Skip to content

Tag: react-hooks

Equivalent of setState callback with React hooks

I have a modal with a list of answers. I can either click an answer to select it, then click a button to confirm my choice. Or I can double-click an answer to select it and confirm. I’m having trouble properly handling the double-click case. With React class components, I would have used setState()&#821…