|
![]() |
Docs React Native | Docs Expo |
Esta es la lista de instalaciones recomendadas para el curso de React Native, si encuentran enlaces adicionales o cambios en esta hoja, pueden hacerlos.
|
![]() |
Docs React Native | Docs Expo |
Esta es la lista de instalaciones recomendadas para el curso de React Native, si encuentran enlaces adicionales o cambios en esta hoja, pueden hacerlos.
import axios from "axios"; | |
async function flowRouter(endp) { | |
try { | |
const endpointUrl = `http://localhost:3008/v1/get_weather`; | |
const response = await axios.post(endpointUrl, { | |
number: "34695623837", | |
name: "Bittor" |
import axios from "axios"; | |
async function flowRouter(endp) { | |
try { | |
const endpointUrl = `http://localhost:3008/v1/get_weather`; | |
const response = await axios.post(endpointUrl, { | |
number: "34695623837", | |
name: "Bittor" |
git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"
git config --global alias.s status --short git config —global alias.s “status —short”
git config --global alias.s status -sb
git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"
git config --global alias.s status --short
git config --global alias.s status -sb
interface Country { | |
name: string; | |
id: string; | |
} | |
export const countries: Country[] = [ | |
{ name: "Afghanistan", id: "AF" }, | |
{ name: "Aland Islands", id: "AX" }, | |
{ name: "Albania", id: "AL" }, | |
{ name: "Algeria", id: "DZ" }, |
npx create-expo-app@latest |