-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.json
18 lines (18 loc) · 1.02 KB
/
server.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"categories": [
{ "id": "camisetas", "title": "Camisetas" },
{ "id": "calcas", "title": "Calças" },
{ "id": "cintos", "title": "Cintos" }
],
"products": [
{ "id": 1, "title": "Camiseta Front-end", "price": 79.9, "category_id": "camisetas", "slug": "camiseta-front-ends"},
{ "id": 2, "title": "Camiseta CSharpolin", "price": 69.9, "category_id": "camisetas", "slug": "camiseta-csharpolin"},
{ "id": 3, "title": "Calça preta back-end", "price": 129.9, "category_id": "calcas", "slug": "calca-preta-back-end"},
{ "id": 4, "title": "Calça azul do React", "price": 109.9, "category_id": "calcas", "slug": "calca-azul-react"},
{ "id": 5, "title": "Cinto azul do Nodejs", "price": 209.9, "category_id": "cintos", "slug": "cinto-azul-nodejs"}
],
"recommended": [
{ "id": 1, "title": "Camiseta Front-end", "price": 79.9, "category_id": "camisetas", "slug": "camiseta-front-ends"},
{ "id": 4, "title": "Calça azul do React", "price": 109.9, "category_id": "calcas", "slug": "calca-azul-react"}
]
}