【发布时间】:2020-05-03 22:48:51
【问题描述】:
我正在尝试用 makeStyles() 覆盖 React-Router 的 Link 标签以删除链接装饰。我是否错误地使用了 makeStyles?默认文本下划线仍然显示。
const useStyles = makeStyles((theme) => ({
root: {
display: "flex",
},
Link: {
textDecoration: "none",
},
}));
【问题讨论】:
标签: reactjs material-ui