Found the solution here : http://exploringjs.com/es6/ch_modules.html
Basically, I had to do
export default fetchUtil
export {fetchUtil as fetch, post, put, get}
Found the solution here : http://exploringjs.com/es6/ch_modules.html
Basically, I had to do
export default fetchUtil
export {fetchUtil as fetch, post, put, get}