- saving progress;

This commit is contained in:
Vitalii Kiiko
2024-09-02 17:15:43 +02:00
parent d634e425e5
commit c15360faf0
41 changed files with 1531 additions and 356 deletions

View File

@@ -0,0 +1,10 @@
import { NetworkService } from './network-service';
const API_BASE_URL = process.env.REACT_APP_API_EXECUTION_ADDRESS;
export default class LookupdataService {
static getItems = (callback, errCallback, queryParams) => {
NetworkService.get(`${API_BASE_URL}/lookUpData/type`, callback, errCallback, queryParams);
};
}