This function returns the redux state
this.context.store.getState()
Here's the state
Map {size: 2, _root: ArrayMapNode, __ownerID: undefined, __hash: undefined, __altered: false}
If I do this.context.store.getState()["size"] it will return 2, which is perfect. Now I want to retrieve place_id from the following. How do I do it?
{_root:
entries:
[place_id: 'TRYING TO GET THIS VALUE"
But if I do getState()["_root"]["entries"]["place_id"] it doesn't work (because it's within an array?)