[Error] Module not found: Error: Cannot find file: 'index.js' does not match the corresponding name on disk: '.\node_modules\React\react'.

Lily·2022년 7월 20일

수정 전

import { useState } from 'React'

수정 후

import { useState } from 'react'

보통 철자에 문제가 있는 경우가 많다고 한다.
'react'를 'React'로 import 한 나의 경우 처럼 대소문자 확인도 해보자.

0개의 댓글