|
|
@@ -2,16 +2,21 @@ import React from 'react';
|
|
|
|
|
|
import { Skeleton } from '~/components/Skeleton';
|
|
|
|
|
|
-import customSidebarStyles from '../CustomSidebar.module.scss';
|
|
|
-import styles from './SidebarSkeleton.module.scss';
|
|
|
+import styles from '../Tag.module.scss';
|
|
|
+
|
|
|
+export const TagListSkeleton = (): JSX.Element => {
|
|
|
+ return (
|
|
|
+ <Skeleton additionalClass={`${styles['grw-tag-list-skeleton']} w-100 rounded overflow-hidden`} />
|
|
|
+ );
|
|
|
+};
|
|
|
|
|
|
const TagContentSkeleton = (): JSX.Element => {
|
|
|
|
|
|
return (
|
|
|
- <div className="grw-container-convertible">
|
|
|
- <Skeleton additionalClass={`${styles['grw-sidebar-skeleton-text-full']} my-4`} />
|
|
|
- <Skeleton additionalClass={`${styles['grw-sidebar-skeleton-text-full']} my-4`} />
|
|
|
- </div>
|
|
|
+ <>
|
|
|
+ <Skeleton additionalClass={`${styles['grw-tag-skeleton-h3']} my-3`} />
|
|
|
+ <TagListSkeleton />
|
|
|
+ </>
|
|
|
);
|
|
|
};
|
|
|
|