1

Is it a good practice to turn props into state inside a components in react?

Comments
  • 1
    If you're going to have the user change it in some way yes go ahead.

    If not, no need to create a local state when a prop will do.
Add Comment