如何在Material-UI上设置Dialog标题?

Sim*_*amo 6 material-ui

如何在Dialog(Material-UI)上居中?Mi代码

<Dialog
   open={this.state.open}
   titleStyle = {styles.Dialog}
   title='Title centered please!'
   actions={standardActions}
   onRequestClose={this.handleRequestClose}
>
Run Code Online (Sandbox Code Playgroud)

Dialog boby..asdasdasd

带有文字"Ingreso de Procedimientos"的标题请集中

Lar*_*one 11

这对我有用:

<Dialog
   titleStyle={{textAlign: "center"}}
   ... />
Run Code Online (Sandbox Code Playgroud)