child components?
render() {
return (
<div>
<h1>Move the mouse around!</h1>
<Mouse render={mouse => (
<Cat mouse={mouse} />
)}/>
</div>
);
}
VERSUS
render() {
return (
<div>
<h1>Move the mouse around!</h1>
<Mouse>
<Cat mouse={mouse} />
</Mouse>
</div>
);
}
Откуда у тебя во втором случае mouse берется?
через child вроде нельзя передать пропсы
Обсуждают сегодня