Created
May 16, 2021 16:05
-
-
Save tiagoamaro/760ab6f7db0eac220a29ad55a40ff1bd to your computer and use it in GitHub Desktop.
Toti - React - Arquivo JSON exemplo para ser utilizado com o https://github.com/typicode/json-server
This file contains 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
{ | |
"contatos": [ | |
{ | |
"id": 1, | |
"nome": "John Doe", | |
"email": "[email protected]", | |
"telefone": "1111-1111" | |
}, | |
{ | |
"id": 2, | |
"nome": "Foo Bar", | |
"email": "[email protected]", | |
"telefone": "2222-2222" | |
}, | |
{ | |
"id": 3, | |
"nome": "Alice and Bob", | |
"email": "[email protected]", | |
"telefone": "3333-3333" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment