강의

멘토링

커뮤니티

Inflearn Community Q&A

sserenityy's profile image
sserenityy

asked

[React Part 1] Learning React by Building and Comparing

[Search Results] If there are search results

store import

Written on

·

244

4

main.js 에서 store 객체 import 할 때

왜 Store.js가 아니라 ./js/store.js 경로인지 모르겠어요ㅜㅜ

import store from './Store.js';
import store from './js/store.js';
reactMVC

Answer 1

5

jeonghwan님의 프로필 이미지
jeonghwan
Instructor

1-vanilla 와 2-react에서 모듈 가져오는 방식이 다르다는 질문이시죠? 

개발 환경의 차이인데요. 2-react에서는 바벨스탠드얼론 라이브러리를 사용하고 있는 점이 다릅니다.

    <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
    <script
      type="text/babel"
      data-presets="react"
      data-type="module"
      src="js/main.js"
    ></script>

저도 수업을 준비하면서 이부분을 해결하려고 시행착오를 겪었는데요. 이렇게 전체 경로를 이용해 모듈을 가져와야 합니다.  수업에서만 사용한다고 생각하시고 이해해 주세요.

sserenityy's profile image
sserenityy

asked

Ask a question