При том, что в других местах это не прокатывает, и выглядит не очень
В каких других?
interface CompProps { title?: string; } export const Comp = ({ title }: CompProps): JSX.Element => { return ( <> {title && ( <h2>{title}</h2> )} </> ); }; export default Comp;
ошибка ESLint: propType "title" is not required, but has no corresponding defaultProps declaration.(react/require-default-props)
Обсуждают сегодня