Refectored Message comp

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2021-11-20 13:29:32 +05:30
parent f628a6c3d6
commit 7e7a5e692e
11 changed files with 453 additions and 530 deletions

View file

@ -87,6 +87,15 @@ function openRoomOptions(cords, roomId) {
});
}
function replyTo(userId, eventId, body) {
appDispatcher.dispatch({
type: cons.actions.navigation.CLICK_REPLY_TO,
userId,
eventId,
body,
});
}
export {
selectTab,
selectSpace,
@ -100,4 +109,5 @@ export {
openEmojiBoard,
openReadReceipts,
openRoomOptions,
replyTo,
};