Como obter o valor do campo de senha no material-ui do react

Não consigo acessar o valor de<TextField />se eu não escrever<input type='password'/> então funciona bem, mas, para isso, estou recebendo um TypeError, 'this.refs [this._getRef (...)]. getInputNode não é uma função'

 dialogAction(tag,e){

  console.log(this.refs.password);
  console.log(this.refs.password.getValue());
  this.refs.dialog.dismiss();
}

render(){
let self = this;

let row = this.row,col = this.column;
let standardActions = [
  { text: 'Cancel',onTouchTap: this.dialogAction.bind(this,ProductConstants.CANCEL)},
  { text: 'Submit',onTouchTap: this.dialogAction.bind(this,ProductConstants.SUBMIT)}
];

return (
  <div className="ProductRepository">

    <Dialog ref = 'dialog'
      title="Dialog With Standard Actions"
      actions={standardActions}
      actionFocus="submit"
      modal={true}>
      <TextField ref='password'
        hintText="Password"
        floatingLabelText="Password">
        <input type="password" />
      </TextField>
    </Dialog>
    </div> 
    );}

   }

A imagem abaixo é a saída do console do código acima.

questionAnswers(4)

yourAnswerToTheQuestion