export default function EditorToolbar(props) {
const [open, setOpen] = React.useState(false);
const handleOpen = () => {
setOpen(!open);
};
}
return(
<IconButton size='small' onClick={handleOpen} >
{open?show your react component here:null}
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…