小编agn*_*nes的帖子

未知的道具 - 反应和材料 - ui

目前我正在使用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)

javascript reactjs react-jsx material-ui

8
推荐指数
1
解决办法
6500
查看次数

标签 统计

javascript ×1

material-ui ×1

react-jsx ×1

reactjs ×1