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/LoadingDetails.tsx

14 lines
523 B

import React, { FC } from 'react';
import { Box, Skeleton } from '@rocket.chat/fuselage';
const LoadingDetails: FC = () =>
<Box display='flex' flexDirection='row' mbe='x20' w='full'>
<Skeleton variant='rect' w='x120' h='x120' mie='x20'/>
<Box display='flex' flexDirection='column' justifyContent='space-between' flexGrow={1}>
<Skeleton variant='rect' w='full' h='x32'/>
<Skeleton variant='rect' w='full' h='x32'/>
<Skeleton variant='rect' w='full' h='x32'/>
</Box>
</Box>;
export default LoadingDetails;