ajax
is the global manager for handling all ajax requests.
It is a promise based system for fetching data, based on axios
See our storybook for a live demo and documentation
npm i --save @lion/ajax
import { ajax } from '@lion/ajax';
ajax.get('data.json').then(response => console.log(response));