RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/components/message/notification/UnreadMessagesNotification.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { ReactElement } from 'react';
import React from 'react';

import MessageNotification from './MessageNotification';

const UnreadMessagesNotification = (): ReactElement => {
    return <MessageNotification label='Unread' bg='badge-background-level-2' />;
};

export default UnreadMessagesNotification;