import axios from "axios"; export const get = async (url: string):Promise => { const { data: res } = await axios.get(url); return res; };