UNPKG

contiago-toolbar

Version:

One of the options for outputting content from contiago xml-server

13 lines (9 loc) 250 B
import { createSelector } from 'reselect'; const selectRoute = (state) => state.get('route'); const makeSelectLocation = () => createSelector( selectRoute, (routeState) => routeState.get('location').toJS() ); export { makeSelectLocation, };