blackbirdchess-docker-dev/react/src/store/Feature1/FeatureApis.js
2020-11-16 17:14:34 +01:00

12 lines
271 B
JavaScript

import {axiosInstance} from '../../network/apis';
const handlerEnabled = false;
// Replace endpoint and change api name
const apiExampleRequest = async () => {
return await axiosInstance.get(`ENDPOINT`, { handlerEnabled });
};
export default {
apiExampleRequest
};