找不到babel运行时和material-ui模块

时间:2019-02-25 10:02:47

标签: javascript reactjs material-ui babel material

我正在尝试使用材质ui创建标头,而babel runetime出现此错误:

未找到模块:无法解析'C:\ xampp \ htdocs \中的'C:\ xampp \ htdocs \ React_Js \ the_venue \ node_modules @ babel \ runtime / helpers / esm / classCallCheck' React_Js \ the_venue \ src'

我从一些解决方案中che了一下。他们中的很多都告诉我用:降级babel

npm install --save-exact @ babel / runtime @ 7.0.0-beta.55

问题仍然存在。

她是我的代码:

import React, { Component } from 'react'
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import MenuIcon from '@material-ui/icons/Menu';
import IconButton from '@material-ui/core/IconButton';


 class Header extends Component {
  render() {
    return (
        <AppBar position="fixed" >
c
        </AppBar>
    )
  }
}
export default Header;

0 个答案:

没有答案