Артем Леванов
first commit
41a71fd
raw
history blame contribute delete
350 Bytes
import { classNames } from '@/shared/lib/classNames/classNames';
import cls from './NotFoundPage.module.scss';
interface NotFoundPageProps {
className?: string;
}
export const NotFoundPage = ({ className }: NotFoundPageProps) => (
<div className={classNames(cls.NotFoundPage, {}, [className])}>Страница не найдена</div>
);