1. Which React hook lets you add internal state to functional components in React Native?
useState allows a functional component to hold local state. It returns an array containing the current state value and a function to update it. Updating the state automatically re-renders the component.
const [count, setCount] = useState(0);