constructor(props) {
super(props)
this.state = {
data : [
{
key: 1,
id: 1,
name: 'Ivan Ivanov',
status: true,
feedback: 'Excellent work, I will advise all',
},
{
key: 2,
id: 2,
name: 'Peter Petrov',
status: false,
feedback: 'Made cool, thank you very much',
},
]
}
this.columns = [
{ title: 'id', dataIndex: ...