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
| <template> | |
| <u-app> | |
| <div class="error-container"> | |
| <div class="error-content"> | |
| <!-- Animación del número 404 --> | |
| <div class="error-code-wrapper"> | |
| <h1 class="error-code">{{ error.statusCode || 404 }}</h1> | |
| <div class="error-glow"></div> | |
| </div> |
Descargar hoja de atajos de React
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
| const imageUrls: string[] = [ | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-1.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-2.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-3.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-4.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-5.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-6.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-7.jpg", | |
| "https://flowbite.s3.amazonaws.com/docs/gallery/square/image-8.jpg", |
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
| <h1>{{ name() }}</h1> | |
| <dl> | |
| <td>Nombre:</td> | |
| <dd>{{ name() }}</dd> | |
| <td>Edad:</td> | |
| <dd>{{ age() }}</dd> | |
| <td>Método:</td> |
| |
![]() |
| 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.
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
| services: | |
| db: | |
| container_name: postgres_database | |
| image: postgres:16.3 | |
| volumes: | |
| - ./postgres:/var/lib/postgresql/data | |
| environment: | |
| - POSTGRES_PASSWORD=123456 | |
| restart: always | |
| ports: |
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
| .fade-in { | |
| animation: fadeIn 0.3s; | |
| -webkit-animation: fadeIn 0.3s; | |
| -moz-animation: fadeIn 0.3s; | |
| -o-animation: fadeIn 0.3s; | |
| -ms-animation: fadeIn 0.3s; | |
| } | |
| @keyframes fadeIn { | |
| 0% {opacity:0;} | |
| 100% {opacity:1;} |
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
| { | |
| "extends": "./tsconfig.app.json", | |
| "exclude": [], | |
| "compilerOptions": { | |
| "composite": true, | |
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", | |
| "lib": [], | |
| "types": ["node", "jsdom", "vitest/globals"] | |
| } | |
| } |
NewerOlder

