import React, { useEffect } from 'react';
import iTunes from 'react-native-itunes'
const App: () => React$Node = () => {
useEffect(() => {
iTunes.getTracks().then((tracks) => {
console.log(tracks);
})
}, [])
return (<></>)
}
export default App;
Running application GetAllTracks ({
initialProps = {
};
rootTag = 21;
})
setUpDeveloperTools.js:73 Running "GetAllTracks" with {"rootTag":21,"initialProps":{}}
setUpDeveloperTools.js:73 Possible Unhandled Promise Rejection (id: 0):
TypeError: Cannot read property 'getTracks' of undefined
TypeError: Cannot read property 'getTracks' of undefined