maccounter
7 строк · 411.0 Байт
1import { State } from '@store/redux-store'2
3export const selectProfile = (state: State) => state.profile4export const selectProfileFirstName = (state: State) => state.profile.firstName5export const selectProfileSecondName = (state: State) => state.profile.secondName6export const selectProfilePhone = (state: State) => state.profile.phone7export const selectProfileEmail = (state: State) => state.profile.email8