orchidmap-front/src/redux/map/selectors.ts
2020-01-08 12:15:00 +07:00

7 lines
No EOL
367 B
TypeScript

import { IState } from "$redux/store";
export const selectMap = (state: IState) => state.map;
export const selectMapProvider = (state: IState) => state.map.provider;
export const selectMapLogo = (state: IState) => state.map.logo;
export const selectMapRoute= (state: IState) => state.map.route;
export const selectMapStickers = (state: IState) => state.map.stickers;