shanedbutler / whats-for-dinner-poker

A web-based game inspired by video poker to assist with weekly meal plan creation.
GNU General Public License v3.0
2 stars 1 forks source link

Reduction of useState hook #36

Closed shanedbutler closed 1 year ago

shanedbutler commented 1 year ago

This PR removes several instances of useState being used for user form field text input. The code has been refactored to utilize useRef hook instead as state doesn't need to be tracked as the user inputs, but only on submit.

Self-tested working.