No changes made

This commit is contained in:
2025-04-16 12:47:04 -04:00
commit 1ed3b0c2d4
98 changed files with 8857 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import axios from 'axios'
import { Response } from '../types/Response'
import { Manufacturer } from '../types/manufacturer'
export const fetchManufacturers = async () => {
const response = await axios.get<any, Response<Manufacturer[]>>(
`${import.meta.env.VITE_API}/manufacturer`)
return response.data
}