summaryrefslogtreecommitdiff
path: root/src/lib/home/api/categoryHomeApi.js
blob: e5def60801e80300e71a1b518864b8626e76982b (plain)
1
2
3
4
5
6
7
8
9
10
import axios from 'axios';

const categoryHomeIdApi = async ({ id }) => {
  const dataCategoryHomeId = await axios(
    `${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/product-homepage?id=` + id
  );
  return dataCategoryHomeId.data;
};

export default categoryHomeIdApi;