blob: cca052f74dbed99c0c25d242a57e0c6527908511 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import axios from 'axios'
export const popularProductApi = () => {
return async () => {
const dataPopularProducts = await axios(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/search?q=*&page=1&orderBy=popular`
)
return dataPopularProducts.data.response
}
}
|