Всем привет!
Вот такой код
// файл parent.tsx
import * as React from 'react';
import Child from './child';
class Parent extends React.Component<{}, {}> {
constructor(props){
super(props);
}
state = {
items: [
{
id: 1,
title: 'Test-1'
},
{
id: 2,
title: 'Test-3'
}
]
}
render() {
return (
<div>
<Child items={this.state.items}/>
</div>
);
}
}
файл child.tsx
interface Props {
items: any;
}
class Child extends React.Component<Props, {}> {
constructor(props){
super(props);
}
render() {
const items = this.props.items;
return (
<div>
</div>
);
}
}
в файле Parent.tsx показывает ошибку
Property 'items' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes>?