8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
import CONFIG from "../../Core/сonfig.js";
|
||
|
||
const getNotIssuedLenses = async (api) => {
|
||
const response = await api.get(`${CONFIG.BASE_URL}/lenses/not_issued/`);
|
||
return response.data;
|
||
};
|
||
|
||
export default getNotIssuedLenses; |