const ins = {
post: (url, body, config) => fetch(url, {...config, method: "POST", body}),
get: (url, config) => fetch(url, {...config, method: "GET"}),
}
export default ins