state-propsReactState PropsEasyWhat is the key difference between state and props?1State is owned and mutated by a component; props are received from the parent and read-only2Props are mutable and state is immutable3Both state and props can be freely mutated by children4State is passed down while props stay localBack to list