Files
agenciapsilmno/src/layout/service/NodeService.js
2022-11-03 11:46:46 +03:00

12 lines
282 B
JavaScript
Executable File

export default class NodeService {
getTreeTableNodes() {
return fetch('data/treetablenodes.json').then(res => res.json()).then(d => d.root);
}
getTreeNodes() {
return fetch('data/treenodes.json').then(res => res.json()).then(d => d.root);
}
}