//export const apiUrl = `${config.api}api/v1/`; export const apiUrl = 'http://localhost:8083/'; //mensaje export function partial(fn, ...presetArgs) { return function partiallyApplied(...laterArgs) { return fn(...presetArgs, ...laterArgs); }; }