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/apps/LogsLoading.tsx

14 lines
430 B

import { Box, Skeleton, Margins } from '@rocket.chat/fuselage';
import React, { FC } from 'react';
const LogsLoading: FC = () => (
<Box maxWidth='x600' w='full' alignSelf='center'>
<Margins block='x2'>
<Skeleton variant='rect' width='100%' height='x80' />
<Skeleton variant='rect' width='100%' height='x80' />
<Skeleton variant='rect' width='100%' height='x80' />
</Margins>
</Box>
);
export default LogsLoading;