import React from 'react'; import { Skeleton } from '~/components/Skeleton'; import styles from './RecentChangesSubstance.module.scss'; const SkeletonItem = () => { const isSmall = window.localStorage.isRecentChangesSidebarSmall === 'true'; return (
  • ); }; const RecentChangesContentSkeleton = (): JSX.Element => { return (
    ); }; export default RecentChangesContentSkeleton;