mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
7 lines
No EOL
367 B
TypeScript
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; |