Problem Statement
Which React hook lets you add internal state to functional components in React Native?
Explanation
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.
Code Solution
SolutionRead Only
const [count, setCount] = useState(0);