// api.js
const axios = require('axios');
const fetchData = async (url) => {
try {
const response = await axios.get(url);
return response.data;
} catch (error) {
throw error;
}
};
module.exports = fetchData;