Files
boluo-app-main/src/store/selector/app.ts
2025-11-03 22:18:39 +08:00

10 lines
360 B
TypeScript

import { IState } from '@/types/store';
export const selectRoleType = (state: IState) => state.appState.roleType;
export const selectHomePageType = (state: IState) => state.appState.homePageType;
export const selectLocation = (state: IState) => state.appState.location;
export const selectCityConfigs = (state: IState) => state.appState.cityConfigs || [];