【发布时间】:2017-10-30 13:59:42
【问题描述】:
我收到以下错误:
warning.js:35 Warning: Unknown prop `notification` on <NotificatonType.InvitedToEventNotification> tag. Remove this prop from the element.
我知道在传输 dom 元素上不标准的道具时会发生这种情况,但是在这里我尝试使用我自己的组件。这是渲染方法:
render() {
const type = this.props.notification.type;
let Tag = "NotificatonType." + type;
return <Tag {...this.props}/>
}
【问题讨论】:
-
我相信 React 16 删除了这个警告。
标签: reactjs components prop