我正在尝试使用状态来更改Material-UI AppBar
的主题,但是主题没有改变,而图标却改变了。
这里是代码的链接:https://codesandbox.io/s/relaxed-bird-n30bg?file=/src/App.js
答案 0 :(得分:2)
:)
在App.js中,有一个拼写错误-调色板应为调色板
const theme = createMuiTheme({
palette: { //<---here
type: themeMode,
primary: {
main: themeMode === "light" ? "#3f51b5" : "#333333"
}
}
});
我已检查并输入错误,并且一切正常。