States and Hooks
State in react:
State are used to create dynamic data on the UI.
State are mutable (Its value can change).
State are local, states belong to one particular component.
We cannot share the state between component like props.
By default FBC(Functio...
reactjsbynitin.hashnode.dev6 min read