RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/omnichannel/queueList/QueueListPage.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { useTranslation } from '@rocket.chat/ui-contexts';
import React from 'react';

import { Page, PageHeader, PageContent } from '../../../components/Page';
import QueueListTable from './QueueListTable';

const QueueListPage = () => {
    const t = useTranslation();

    return (
        <Page>
            <PageHeader title={t('Livechat_Queue')} />
            <PageContent>
                <QueueListTable />
            </PageContent>
        </Page>
    );
};

export default QueueListPage;