浏览完@ material-ui的文档后,我陷入了@ material-ui / styles部分,想问一些问题?
̣̣(https://material-ui.com/styles/basics/#adapting-the-hook-api)
function MyButton(props) {
const { color, ...other } = props;
const classes = useStyles(props);
return <Button className={classes.root} {...other} />;
}
...other
是什么?然后为什么在<Button/>
中呢?
最好的问候,