Can't resolve module (not found) in React.js

前端 未结 15 1396
太阳男子
太阳男子 2020-12-07 22:03

I can\'t believe that I\'m asking an obvious question, but I still get the error in console log.

Console says that it can\'t find the module in the directory, but I\

15条回答
  •  半阙折子戏
    2020-12-07 22:15

    I think its the double use of header. I just tried something similar myself and also caused issues. I capitalized my component file to match the others and it worked.

    import Header from './src/components/header/header';
    

    Should be

    import Header from './src/components/header/Header';
    

提交回复
热议问题