Projekt

Obecné

Profil

Stáhnout (338 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { axiosInstance } from "./api"
2

    
3

    
4
export const getItemRequest = async (itemId : string) => {
5
    return await axiosInstance.get(
6
        `/item/${itemId}`
7
    )
8
}
9

    
10
// export const getItemConcordancesRequest = async (itemId : string) => {
11
//     return await axiosInstance.get(
12
//         `/api/concordances/${itemId}`
13
//     )
14
// }
(5-5/9)