<TableCell key={idx}>
{React.cloneElement(cell, { isCell: true })}
</TableCell>
))}
Реакт в консоли агрится, что Warning: React does not recognize the isCell prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase iscell instead. If you accidentally passed it from a parent component, remove it from the DOM element.`
Может кто объяснить почему так?
cell в вашем случае примитив или воспринимается как таковой - в его интерфейсе не предусмотрен такой prop. вот он и агрится что мол наверное иммелося в виду кастомный аттрибут HTML ноды - но тады мол его надо без camel case
Обсуждают сегодня