axios-observable
axios-observable copied to clipboard
README example mistake
In the example, isn't the following:
Axios.get('/user?ID=12345'), {
params: {
ID: 12345
}
})
[...]
supposed to be:
Axios.get('/user'), {
params: {
ID: 12345
}
})
[...]