我尝试在App Bar演示中运行最后一个示例,我收到错误:
ERROR in ./src/Root.js
Module build failed: SyntaxError: Unexpected token (28:8)
26 |
27 | class MenuAppBar extends React.Component {
> 28 | state = {
| ^
29 | auth: true,
30 | anchorEl: null,
31 | };
部分代码
class MenuAppBar extends React.Component {
state = {
auth: true,
anchorEl: null,
};
handleChange = (event, checked) => {
this.setState({ auth: checked });
};
handleMenu = event => {
this.setState({ anchorEl: event.currentTarget });
};
handleClose = () => {
this.setState({ anchorEl: null });
};
依赖
.babelrc
{
"presets": ["env","react"]
}
我该怎么办呢?
答案 0 :(得分:1)
我会检查一下MUI的GitHub仓库中列出的预设 在这里:
https://github.com/mui-org/material-ui/blob/v1-beta/.babelrc
也许您需要使用其他一些预设来像这样运行它。 还要检查你是否正在运行他们正在使用的对象分配所需的插件