State — internal. Props — external.
State:
1const [count, setCount] = useState(0);
Props:
1// Parent2<Child name="John" age={25} />3 4// Child5function Child({ name, age }) {6 return <Text>{name}</Text>;7}
Key differences: