мне нужно обязательно указывать его тип, к примеру такой записью?
interface PropChild{
children: JSX.Element
}
можешь так type ComponentWithChildProps = React.PropsWithChildren<{example?: string}>;
а вообще ты можешь в самом компоненте объявить const MyComponent: React.FunctionComponent = (props) => { return props.children; }
children: React.ReactNode
Да, обязательно
Обсуждают сегодня