First create a new project by running — npx react-native init chcuckNorisAPI
cd into chcuckNorisAPI and run npm i axios In the App.js delete everything and paste import React, { useEffect, useState } from 'react'; import { Text, TouchableOpacity,Image,StyleSheet,View,StatusBar } from 'react-native'; import Axios from 'axios' const App=()=>{ const [details,setDetails]…