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/root/PageLoading.tsx

12 lines
325 B

import type { FC } from 'react';
import React from 'react';
import LoadingIndicator from '../../components/LoadingIndicator';
const PageLoading: FC = () => (
<div className='page-loading' role='alert' aria-busy='true' aria-live='polite' aria-label='loading'>
<LoadingIndicator />
</div>
);
export default PageLoading;