import axios from "axios"; export const getIncome = async () => { const response = await axios.get("http://localhost:3000/api/income"); return response.data; };