Can the useEffect hook be used to perform data fetching?
Yes, useEffect is commonly used for data fetching in React functional components. It allows developers to perform asynchronous operations and handle side effects in a clean and declarative way.