Last active
October 13, 2018 04:46
-
-
Save enzzoperez/e3174eb6c1d8e2b4aac5447d0f73f28d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Url para desarrollo, COMENTAR la siguiente linea en produccion | |
const URL_BASE: "localhost:3000" | |
//Url para produccion, DESCOMENTAR la siguiente linea en produccion | |
//const URL_BASE: 'https://myawesomeapi.com/api/ | |
const miFuncion = () => { | |
fetch(URL_BASE) | |
.then(<--algo-->) | |
.catch(<--algo-->) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment