기본 내보내기와 명명된 내보내기

export default function A() {}

// vs

export function A() {}


두 가지 방법 모두 좋다고 생각합니다. 하지만 명명된 내보내기의 몇 가지 이점을 볼 수 있습니다.

명명된 내보내기는 가져오기 이름을 암시적으로 변경할 수 없습니다.




// No error with default export
import Button from '../components/Text'
// now we have a "Button" component 
// which is actually a "Text" component

// TypeScript will throw and error 
// if import and export names don't match
import { Button } from '../components/Text'
// we will get an error here


명명된 내보내기는 다시 내보내고 구성하기가 더 쉽습니다.


components 폴더 안에 여러 UI 구성 요소가 있다고 가정합니다. 개별 파일의 각 구성요소: components/Header.tsx , components/Text.tsx , components/Button.tsx

이제 이러한 구성 요소를 import { Header, Text, Button } from '../components'로 가져올 수 있으려면 components/index.ts를 생성하기만 하면 됩니다.

export * from './Header'
export * from './Text'
export * from './Button'


다음을 작성해야 하는 기본 내보내기와 비교하십시오.

export { default as Header } from './Header'
export { default as Text } from './Text'
export { default as Button } from './Button'


명명된 내보내기는 쓰기가 더 짧습니다.




export function Component() {}
// or 
export const Component = () => {}


기본 내보내기와 비교:

export default function Component() {}
// or 
const Component = () => {}
export default Component



질문이나 의견이 있으면 아래에 게시하고 💖 버튼을 누르면 행복한 해킹! 🙌🏻

학점



사진 제공: Sergey Sokolov on Unsplash

좋은 웹페이지 즐겨찾기