File size: 350 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 |
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>
);
|