import { ReactNode } from 'react'; import clsx from 'clsx'; import { EmptyContent } from '@/shared/ui/emptyContent'; import styles from './ContentLoader.module.scss'; type Props = { text: string; isEmpty: boolean; children: ReactNode; }; const ContentLoader = ({ isEmpty, text, children }: Props) => (
{children}
); export { ContentLoader };