Problem Statement
Which React hook is used to add state to a functional component in React Native?
Explanation
The useState hook lets you add internal component state to functional components. It returns a pair: the current state value and a function to update it.
Code Solution
SolutionRead Only
const [count, setCount] = useState(0);