7514066fc3
* move settings * remove meteor cache files
23 lines
635 B
TypeScript
23 lines
635 B
TypeScript
import React from 'react';
|
|
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
|
import Styled from './styles';
|
|
import { getSettingsSingletonInstance } from '/imports/ui/services/settings';
|
|
|
|
const MenuSkeleton: React.FC = () => {
|
|
const Settings = getSettingsSingletonInstance();
|
|
// @ts-ignore
|
|
const { isRTL } = Settings.application;
|
|
|
|
return (
|
|
<Styled.Skeleton>
|
|
<SkeletonTheme baseColor="#DCE4EC">
|
|
<Styled.SkeletonWrapper>
|
|
<Skeleton direction={isRTL ? 'rtl' : 'ltr'} />
|
|
</Styled.SkeletonWrapper>
|
|
</SkeletonTheme>
|
|
</Styled.Skeleton>
|
|
);
|
|
};
|
|
|
|
export default MenuSkeleton;
|