5 lines
195 B
TypeScript
5 lines
195 B
TypeScript
import { UserState } from './reducers';
|
|
|
|
export const getTimeZone = (state: UserState) => state.timeZone;
|
|
export const getFiscalYearStartMonth = (state: UserState) => state.fiscalYearStartMonth;
|