This is a mobile application built using React Native that helps users find job opportunities and internships that fit their needs. It uses the RapidAPI JSearch API to retrieve job data from the web.
Getting started
To use this application, you will need to obtain your own RapidAPI JSearch API key. Once you have your API key, add your api key in the hook/useFetch.js file here.
const options = {
method: "GET",
url: `https://jsearch.p.rapidapi.com/${endpoint}`,
headers: {
"X-RapidAPI-Key": "", // Add your own api key here <--
"X-RapidAPI-Host": "jsearch.p.rapidapi.com",
},
params: { ...query },
};