/* eslint-disable react/forbid-component-props */ import type { Props } from './types'; import Link from 'next/link'; import { Heading } from 'ui'; export function Header({ title, url }: Props & { readonly title: string; readonly url: string }) { return (
{title} Посмотреть условия
); }