less than 1 minute read

import func from './folder';

TypeError: Cannot read properties of undefined (reading ‘type’)

export한 함수를 import 할 때 {}에 넣지 않아서 typeError가 발생했다.

import { func } from './folder';

1개를 export default를 할 때는 {}에 담지 않고 import 하고 1개 이상을 export 할 때는 {}에 담아서 import하자.

Updated: