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/apps/meteor/client/views/room/Header/HeaderSkeleton.tsx

16 lines
352 B

import { Skeleton } from '@rocket.chat/fuselage';
import { Header, HeaderContent, HeaderContentRow } from '@rocket.chat/ui-client';
const HeaderSkeleton = () => {
return (
<Header>
<HeaderContent>
<HeaderContentRow>
<Skeleton width='25%' />
</HeaderContentRow>
</HeaderContent>
</Header>
);
};
export default HeaderSkeleton;