Create-React-App failed to compile | Import/First Error

前端 未结 7 2047
有刺的猬
有刺的猬 2021-01-02 09:22

I\'m currently using Create-React-App for my personal site. I keep getting the following errors every time I run it:

./src/~/react-router-dom/es/index.js
 Li         


        
7条回答
  •  我在风中等你
    2021-01-02 09:28

    Look closely at your code. I saw this message from a double ; typo.

          import React from 'react';
          import AppBar from '@material-ui/core/AppBar';
          import CircularProgress from '@material-ui/core/CircularProgress';;  <----- Mistake
          import Toolbar from '@material-ui/core/Toolbar';
          import IconButton from '@material-ui/core/IconButton';
    
    

提交回复
热议问题