feat: show message status for outgoing messages

This commit is contained in:
Shivam Mishra
2024-11-27 16:27:13 +05:30
parent faf78bd447
commit d70fa78e7d
3 changed files with 55 additions and 4 deletions
@@ -25,3 +25,10 @@ export const ORIENTATION = {
RIGHT: 'right',
CENTER: 'center',
};
export const MESSAGE_STATUS = {
SENT: 'sent',
DELIVERED: 'delivered',
READ: 'read',
FAILED: 'failed',
};