React Material-Ui has the Dialog
component which has the property modal
, when i change it to true
or false
it show me the same result what does this property means?
it is really confusing me kindly help me?
Material Ui version:0.20.0
Code
<Dialog
modal={true}
open={props.openClose}
autoScrollBodyContent={true}>
{props.children}
</Dialog>