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/components/admin/info/SkeletonText.js

9 lines
260 B

import React, { useMemo } from 'react';
import './SkeletonText.css';
export function SkeletonText() {
const width = useMemo(() => `${ Math.random() * 10 + 10 }em`, []);
return <span className='Admin__InformationPage__SkeletonText' style={{ width }} />;
}