The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/views/admin/viewLogs/ViewLogsPage.tsx

20 lines
439 B

import React, { ReactElement } from 'react';
import Page from '../../../components/Page';
import { useTranslation } from '../../../contexts/TranslationContext';
import ServerLogs from './ServerLogs';
const ViewLogsPage = (): ReactElement => {
const t = useTranslation();
return (
<Page>
<Page.Header title={t('View_Logs')} />
<Page.Content>
<ServerLogs />
</Page.Content>
</Page>
);
};
export default ViewLogsPage;