Web / React native Interview questions
Difference between state and props in React.
Props are passed from a parent component, but the state is managed by the component itself. A component cannot change its props, but it can change its state.
More Related questions...