- 驴Qu茅 es un componente?
- 驴Qu茅 es un hook, cuales haz utilizado y para que?
- 驴C贸mo se trabajan las diferentes resoluciones de pantallas en React Native?
- 驴C贸mo se almacena informaci贸n en React Native?
- 驴C贸mo te comunicas con un Rest API?
- 驴C贸mo manejas el estado de la app?
- Generales de Typescript
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
{ | |
"products": [ | |
{ | |
"codigo": "13013B22", | |
"web": 2.254, | |
"publico": 1.61, | |
"medioMayoreo": 1.38, | |
"mayoreo": 1.15, | |
"distribuidor": 0.874, | |
"franquicia": 0.782, |
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
{ | |
"yachts": [ | |
{ | |
"id": 1, | |
"name": "YATE BIG TIME", | |
"pax": 8, | |
"ft": 46, | |
"model": "CRUISER EXPRESS", | |
"tripulation": "Capit谩n", | |
"priceList": [16000, 16500, 18000, 19500, 21000], |
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
/** | |
* @description Error middleware for handling errors in the application | |
* and converting them to a standard format for the client to consume | |
* and understand the error | |
*/ | |
import type { | |
ErrorRequestHandler, | |
Response, | |
Request, |