I am trying to get a structure like
var tableData= [
  ['Hfbj'],
  ['Hygh'],
  [6],
  ['mayur'],
  [2563458952]
]
Here is my JSON data:
data:{
  "address"': "Hfbj"
  "id": 6
  "landmark": "Hygh"
  "name": "mayur"
  "phone": 2563458952
  "title": "aaa"
}
I am using react-native-table-component in which that type of structure needed. For that, I am doing the following but it showing data.map is not function and undefined.
let newdata = this.state.tableData[0].push(
  [responseJson.data.title],
  [responseJson.data.title]
);
this.setState({
  tableData: newdata
});
How can I achieve it?
 
     
     
    