mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
6 lines
382 B
TypeScript
6 lines
382 B
TypeScript
import { IState } from '~/redux/store';
|
|
|
|
export const selectAuth = (state: IState): IState['auth'] => state.auth;
|
|
export const selectUser = (state: IState): IState['auth']['user'] => state.auth.user;
|
|
export const selectToken = (state: IState): IState['auth']['token'] => state.auth.token;
|
|
export const selectAuthLogin = (state: IState): IState['auth']['login'] => state.auth.login;
|