-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventario.json
More file actions
58 lines (58 loc) · 905 Bytes
/
inventario.json
File metadata and controls
58 lines (58 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"fruteria": {
"fruta": [
{
"nombre": "Manzana",
"cantidad": 50
},
{
"nombre": "Pera",
"cantidad": 20
},
{
"nombre": "Naranja",
"cantidad": 30
},
{
"nombre": "Fresa",
"cantidad": 50
}
],
"verdura": [
{
"nombre": "Lechuga",
"cantidad": 80
},
{
"nombre": "Tomate",
"cantidad": 15
},
{
"nombre": "Pepino",
"cantidad": 50
}
]
},
"limpieza": {
"hogar": [
{
"nombre": "Trapos",
"cantidad": 43
},
{
"nombre": "Pastillas lavavajillas",
"cantidad": 98
}
],
"personal": [
{
"nombre": "Gel",
"cantidad": 32
},
{
"nombre": "Cepillo de dientes",
"cantidad": 34
}
]
}
}