agregar estado inicial de diálogo
This commit is contained in:
parent
f884fa7aa5
commit
3cf74d6c9d
|
@ -7,4 +7,15 @@ class InfoDialog extends React.Component {
|
||||||
open: false,
|
open: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Dialog
|
||||||
|
visible={this.state.open}
|
||||||
|
style={{ width: '650px' }}
|
||||||
|
modal
|
||||||
|
className='p-fluid'
|
||||||
|
header='Información'
|
||||||
|
></Dialog>
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue