так:
interface IProps {
prop1: string;
prop2: string;
}
Typescript не видит стандартные пропсы типо children. Есть механизм типа "IProps extend ComponentProps"? Не могу правильно загуглить
https://t.me/ts_ru
export interface IProps { prop1:string prop2:string } export default MyClass extends React.Component<IProps>{ constructor(props:IProps){ super(props) } }
type ComponentProps = {prop1: string, children: React.ReactChildren}
Обсуждают сегодня