import axios from 'axios' export const getProductDetail = ({ id }, cb) => { axios.get(`v1/project/${id}/view`).then(cb).catch((err) => { console.log(err) }) }