import { something } from './module';
예를 들어 module.js에서 다음과 같이 내보냈다면
export const something = 'value';
export const anotherThing = 'another value';
이를 가져올 때
import { something, anotherThing } from './module';
예를 들어 module.js에서 다음과 같이 내보냈다면
const something = 'value';
export default something;
이를 가져올 때
import something from './module';
중괄호의 유무는 named export와 default export를 구분하는 중요한 차이점을 만듭니다.
named export는 중괄호를 사용하여 명시적으로 가져오지만, default export는 중괄호 없이 가져옵니다.