added ReadReceipts component

This commit is contained in:
unknown 2021-08-16 17:37:29 +05:30
parent 3da1fbf6ca
commit 8d4e796f42
5 changed files with 99 additions and 0 deletions

View file

@ -62,6 +62,14 @@ function openEmojiBoard(cords, requestEmojiCallback) {
});
}
function openReadReceipts(roomId, eventId) {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_READRECEIPTS,
roomId,
eventId,
});
}
export {
handleTabChange,
selectRoom,
@ -72,4 +80,5 @@ export {
openInviteUser,
openSettings,
openEmojiBoard,
openReadReceipts,
};