Closed avkonst closed 5 years ago
I have got the state like the following:
state = { places: { name: string, nearByPOI: { name: string, location: { latitude: number, longitude: number } }[] }[] }
I wonder how to link, for example to state->places->nearByPOI->name properties?
state->places->nearByPOI->name
Literally in the same way you mentioned it.
const link = this.linkAt('places').at('nearByPOI').at('name);
I have got the state like the following:
I wonder how to link, for example to
state->places->nearByPOI->name
properties?