Boolean не является функцией native-native При извлечении API-интерфейса в реагировать native с устройства его выдача Boolean не является функцией
//Fetching a get api fetch('http://dummy.restapiexample.com/api/v1/employees', { method: 'GET' }) .then((response) => response.json()) .then((responseJson) => { console.log(responseJson); }) .catch((error) => { console.error(error); });
объявление переменной неверно,
this.state ={ isLoading:Boolean = true } ////instead of that we should be this.state ={ isLoading: true }
Как уже упоминалось igorves , у вас есть дополнительный серьезный знак акцента (`) перед свойством method в параметре config выборки
method