강의

멘토링

커뮤니티

Inflearn Community Q&A

kimjaewon843916264's profile image
kimjaewon843916264

asked

Developing web applications using React & Express

Features of JSX

아래 화면에 선생님처럼 Codelab이 안뜹니다. 수업진행이 안되네요

Written on

·

496

0

아래 화면에 선생님처럼 Codelab이 안뜹니다. 수업진행이 안되네요
react

Answer 2

1

ReactDOM.render(<App/>,document.getElementById('root'));

<App/>다음에 . 이 아니라 , 입니다! 저도 같은 실수를 했어요

0

저와 같은 경우라면 구글 검색해 보니 아래와 같은 내용이 있네요 전 해결 했습니다. 

 

순서 변경 첫번째 react, 두번재 react-dom

 

You need to switch the load order of the scripts. Load react first, then react-dom. On the JS tab in the Codepen settings, you can grab the icon on the left of the script and drag its position up or down.

kimjaewon843916264's profile image
kimjaewon843916264

asked

Ask a question