2
マテリアルUIのサンプルをダウンロードし、テキストフィールドを試してみました。例の他のコンポーネントは正常に機能しました(たとえば、Dialogue、Button)。 TextFieldでは、私が試したのは、defaultValueだけでした。手伝ってくれてありがとう。テキストフィールド不明な小道具
エラー: 警告:不明な小道具hintText
,floatingLabelText
、floatingLabelFixed
(タグ付き)
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import TextField from 'material-ui/TextField'
import withStyles from 'material-ui/styles/withStyles';
import withRoot from '../components/withRoot';
const styles = {
root: {
textAlign: 'center',
paddingTop: 200,
},
};
let hint = "I wish this would work.";
class Index extends Component {
render() {
return (
<div>
<TextField
hintText={hint}
floatingLabelText="Floating Label Text"
floatingLabelFixed={true}
/>
</div>
);
}
}
Index.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withRoot(withStyles(styles)(Index));
withRootとwithStyles HOCのコードを追加することもできます –
使用している素材のバージョンを確認してください。彼らのベータ版は異なるソースコードを持っています –
withRootとwithStyles HOCを削除しても、問題には影響しませんでした。 –