My array looks like this:
Array [
Object {
"color": "Brown",
"time": "18:32",
},
Object {
"color": "Red",
"time": "18:33",
},
]
But how can I change Object to a name?
I push it like this
const itemLogs = [];
childSnapshot.forEach((csh) => {
let childKeys = csh.key;
itemLogs.push({
color: csh.val().color,
time: csh.val().time
});
});
this.setState({childData: itemLogs});
UPDATE:
This is how I would like to have it:
10-05-2019 [
14:27 {
"color": "Brown",
"time": "14:27",
},
14:23 {
"color": "Red",
"time": "14:23",
},
],
11-06-2019 [
like above but other data
]
I hope this is an better Example.