RocketChat/Rocket.Chat

View on GitHub
packages/ui-client/src/components/UserStatus/Loading.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { ComponentProps, ReactElement } from 'react';

import UserStatus from './UserStatus';

type LoadingProps = Omit<ComponentProps<typeof UserStatus>, 'status'>;

function Loading(props: LoadingProps): ReactElement {
    return <UserStatus {...props} />;
}

export default Loading;