2017-09-25 21 views
2

マテリアルUIのサンプルをダウンロードし、テキストフィールドを試してみました。例の他のコンポーネントは正常に機能しました(たとえば、Dialogue、Button)。 TextFieldでは、私が試したのは、defaultValueだけでした。手伝ってくれてありがとう。テキストフィールド不明な小道具

エラー: 警告:不明な小道具hintText,floatingLabelTextfloatingLabelFixed(タグ付き)

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)); 
+1

withRootとwithStyles HOCのコードを追加することもできます –

+0

使用している素材のバージョンを確認してください。彼らのベータ版は異なるソースコードを持っています –

+0

withRootとwithStyles HOCを削除しても、問題には影響しませんでした。 –

答えて

0

これは、 "バージョン" を使用していた: "1.0.0-beta.11"

私は最新の安定したビルドに切り替え、そしてすべての作品を!

+0

使用している素材のバージョンは? – rideronthestorm

関連する問題