ES6, 가져온 모듈을 한 줄로 내보내려면 어떻게해야합니까? 가능한 경우 한 줄로 다음을 원합니다. import Module from './Module/Module; export Module; 다음을 시도했지만 작동하지 않는 것 같습니다. export Module from './Module/Module; export {default as Module} from './Module/Module'; Module내보내기를 수행하는 모듈 내에서 사용할 필요가없는 한 표준 ES6 방식 입니다. export Module from './Module/Module'; 제안 된 ESnext 방법이지만 지금은 Babel에서 활성화 한 경우에만 작동합니다. 왜 그런지 모르겠지만 이것은 나를 위해 작동합니다. index.jsx ..