Initial commit
This commit is contained in:
commit
fa30c04815
117 changed files with 33513 additions and 0 deletions
4
src/services/users/redux/selectors.ts
Normal file
4
src/services/users/redux/selectors.ts
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import { State } from 'src/redux';
|
||||
|
||||
export const getCurrentUser = (state: State) => state.users.currentUser;
|
||||
export const getUsers = (state: State) => state.users.users;
|
||||
Reference in a new issue