import { StoreState } from '../../../common/store/store.types'; const selectUiStateSlice = (state: StoreState) => state.ui; export const selectEarningsScrollPosition = (state: StoreState) => selectUiStateSlice(state).earningsScreenScroll; export const selectScreenWidth = (state: StoreState) => selectUiStateSlice(state).screenWidth;