@ material-ui / styles调整hook API

时间:2019-10-06 13:17:13

标签: material-ui

浏览完@ material-ui的文档后,我陷入了@ material-ui / styles部分,想问一些问题?

  • 这3个中的哪一个(高阶组件,带样式的组件或Hook)是在实践中最好用React实现的。在Material-UI进行样式设置时,是否应将Material-UI中的Hook API与React Hook一起使用以获得最佳效果?因为我目前在React中采用Hook。
  • 我遇到了这几行代码,无法理解,请帮助我提供语法。可以在“适应”挂钩API中找到

̣̣(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/>中呢?

最好的问候,

0 个答案:

没有答案