본문 바로가기
Front-End/React

[React] 1. HelloWorld

by hongdor 2021. 2. 1.
728x90

출처: React 공식 홈페이지

Hello World – React (reactjs.org)

 

 

1. Hello, world! 를 출력하는 방법이다.

 > index.html에 있는 <div id="root"/>에 연동되어 표시되는 것이다.

 

ReactDOM.render(
  <h1>Hello, world!</h1>,
  document.getElementById('root')
);

 

728x90

'Front-End > React' 카테고리의 다른 글

[React] 5. State와 생명주기  (0) 2021.02.01
[React] 4. Component와 Props  (0) 2021.02.01
[React] 3. Element  (0) 2021.02.01
[React] 2. JSX  (0) 2021.02.01
[React] 0. 환경설정  (0) 2021.02.01

댓글