jineecode
import, export 본문
import React, {Component} from 'react';
그냥 React로 쓰는 것과, 중괄호 안에 Component로 쓰는 것의 차이가 무엇일까?
export const hello = 'hello'; // import {hello} , 여러 번 쓸 수 있다.
export default Hello; // import Hello, default로 export 할 경우에는 한 번만 가능하다.
//module.exports 와 호환이 된다. 같다는 의미는 아님
노드에서는 require, module.exports만 지원한다. import, export를 썼는데도 가능한 이유는 바벨이 있기 때문임.
즉, 웹팩에서는 require로 불러와야 한다. (노드 기반이므로)
const React = require('react');
exports.hello = 'a' 와 module.exports = {hello: 'a'}는 같다
module.exports = NumberBall;
'JS > react' 카테고리의 다른 글
SPA 환경에서 구글 태그 관리자 넣기 (0) | 2021.09.01 |
---|---|
React Native 기본 원리 (0) | 2021.06.19 |
useEffect hooks with axios cannot read property of undefined (0) | 2021.05.13 |
Using target=_blank without rel=noopener noreferrer is a security risk (0) | 2021.05.10 |
useEffect 사용 (0) | 2021.05.02 |
Comments