import { classNames } from '@/shared/lib/classNames/classNames'; import { Loader } from '@/shared/ui/Loader/Loader'; import cls from './PageLoader.module.scss'; interface PageLoaderProps { className?: string; text?: string; } export const PageLoader = ({ className, text }: PageLoaderProps) => (
{text &&
{text}
}
);