目前我正在使用react和material-ui,我在我的组件中有以下代码.
<Dialog
title="Dialog With Actions"
actions={actions}
modal={false}
open={this.state.open}
onRequestClose={this.handleClose}>
Are you sure that you want to proceed?
</Dialog>
Run Code Online (Sandbox Code Playgroud)
我已经进口了
import React from 'react';
import Dialog from 'material-ui/Dialog';
import FlatButton from 'material-ui/FlatButton';
Run Code Online (Sandbox Code Playgroud)
但我总是收到以下错误消息
Warning: Unknown prop `onKeyboardFocus` on <button> tag. Remove this prop from the element.
Warning: Unknown prop `keyboardFocused` on <button> tag. Remove this prop from the element.
Run Code Online (Sandbox Code Playgroud)