Added updating of display name to profile. Added employees table.
This commit is contained in:
8
client/src/redux/messaging/messaging.selectors.js
Normal file
8
client/src/redux/messaging/messaging.selectors.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { createSelector } from "reselect";
|
||||
|
||||
const selectMessaging = state => state.messaging;
|
||||
|
||||
export const selectChatVisible = createSelector(
|
||||
[selectMessaging],
|
||||
messaging => messaging.visible
|
||||
);
|
||||
Reference in New Issue
Block a user