npx react-native init AwesomeTSProject --template react-native-template-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
| export const heroes = [ | |
| { | |
| 'id': 'dc-batman', | |
| 'superhero':'Batman', | |
| 'publisher':'DC Comics', | |
| 'alter_ego':'Bruce Wayne', | |
| 'first_appearance':'Detective Comics #27', | |
| 'characters':'Bruce Wayne' | |
| }, | |
| { |
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
| # Node template | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Runtime data |
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
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": ["airbnb"], | |
| "globals": { | |
| "document": false, | |
| "escape": false, |
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
| { | |
| "initalState": { | |
| "mylist": [], | |
| "trends": [ | |
| { | |
| "id": 2, | |
| "slug": "tvshow-2", | |
| "title": "In the Dark", | |
| "type": "Scripted", | |
| "language": "English", |
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
| <div className="row justify-content-center mt-5"> | |
| <div className="col-md-8"> | |
| <div className="card"> | |
| <div className="card-body"> | |
| <h2 className="text-center">Editar Producto</h2> | |
| <form> | |
| <div className="form-group"> | |
| <label>Titulo</label> | |
| <input |
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
| <div className="card mt-5"> | |
| <div className="card-body"> | |
| <h2 className="card-title text-center mb-5">Agrega las citas aqui</h2> | |
| <form> | |
| <div className="form-group row"> | |
| <label className="col-sm-4 col-lg-2 col-form-label">Nombre Mascota</label> | |
| <div className="col-sm-8 col-lg-10"> | |
| <input | |
| type="text" | |
| className="form-control" |
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
| html { | |
| height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: 'Lato', sans-serif; | |
| background-color: #e5e5e5; | |
| min-height: 100%; | |
| } |
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
| html { | |
| min-height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: sans-serif; | |
| background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, #FF0066 100%); | |
| min-height: 100%; | |
| padding-bottom: 5rem; |