728x90
모듈 내보내기 (export)
- export는 다른 파일에서 이 파일을 import 할 때 , 아래의 코드처럼 선언한 MyComponent 클래스를 불러오도록 설정할 때 사용한다
export default MyComponent;
모듈 불러오기(import)
- App컴포넌트에서 MyComponent 컴포넌트를 불러와서 사용할 때 import를 사용한다
import MyComponent from './MyComponent';
const App = () => {
return <MyComponent />;
};
export default App;
728x90
'React > 기초' 카테고리의 다른 글
리액트[기초] props.children (0) | 2022.05.27 |
---|---|
리액트[기초] props (0) | 2022.05.27 |
리액트[기초] 클래스형 컴포넌트, 함수형 컴포넌트 (0) | 2022.05.26 |
리액트[기초] JSX (0) | 2022.05.24 |
리액트[기초] Virtual DOM (0) | 2022.05.24 |