RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/notAuthorized/NotAuthorizedPage.tsx

Summary

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

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

const NotAuthorizedPage = (): ReactElement => {
    const t = useTranslation();

    return (
        <Page>
            <PageContent pb={24}>
                <Box is='p' fontScale='p2' color='default'>
                    {t('You_are_not_authorized_to_view_this_page')}
                </Box>
            </PageContent>
        </Page>
    );
};

export default NotAuthorizedPage;