Projekt

Obecné

Profil

Stáhnout (190 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 97deff21 Fantič
import { axiosInstance } from "./api"
2
3
4
export const getItemNotesRequest = async (itemId : string) => {
5
    return await axiosInstance.get(
6
        `/api/notes/?item_id[]=${itemId}`
7
    )
8
}