This commit is contained in:
2026-03-13 13:54:45 +07:00
parent a8e30f32a0
commit 25111ff10e
120 changed files with 4213 additions and 4859 deletions

6
src/lib/api/deal.ts Normal file
View File

@@ -0,0 +1,6 @@
import { apiFetch } from './client';
import { TypeListProductDeal } from '@/types';
export function getDeals() {
return apiFetch<TypeListProductDeal>('/deals');
}