Consider the following React component… function DataFetcher…
Consider the following React component… function DataFetcher() { useEffect(() => { console.log(“A”); fetch(“https://example.com/data”) .then(r => { console.log(“B”); }); }, []) console.log(“C”); return Hello world!} Assuming the fetch request returns successfully, what are the first 3 letters, in order, printed to the console?