Select Git revision
getCombinationByUUID.js
getCombinationByUUID.js 271 B
import api from "../axios";
const getCombinationByUUID = async (uuid) => {
try {
const response = await api.get(`/parts/combination/by-uuid/${uuid}`);
return response.data.data;
} catch (error) {
throw error;
}
};
export default getCombinationByUUID;