12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
|
|
<Typography variant="subtitle1" component="div">
|
||
|
|
Selected: {selectedValue}
|
||
|
|
</Typography>
|
||
|
|
<br />
|
||
|
|
<Button variant="outlined" onClick={handleClickOpen}>
|
||
|
|
Open simple dialog
|
||
|
|
</Button>
|
||
|
|
<SimpleDialog
|
||
|
|
selectedValue={selectedValue}
|
||
|
|
open={open}
|
||
|
|
onClose={handleClose}
|
||
|
|
/>
|