Hello, World! > 리액트 react

리액트 react

Concepts Hello, World!

페이지 정보

본문

터미널에서 npx create-react-app으로 app을 생성하면 

index.html, index.js, app.js 등은 물론 필요한 디렉토리와 파일등이 자동으로 생성된다. 


생성된 src 디렉토리에 concepts.js 파일을 생성하고 다음과 같이 입력한다. 


function Concepts() {
  return (
     <h1>Hello, world!</h1>
  );
}

export default Concepts;



그전에 index.js를 다음과 같이 수정한다. 


import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import Concepts from './concepts'; // concepts.js 파일 임포트

ReactDOM.render(
  <React.StrictMode>
    <Concepts />
  </React.StrictMode>,
  document.getElementById('root')
);
 


그리고 터미널에서 해당 디렉토리로 이동 

해당 디렉토리에서 

npm start...  


71f20cb486ee19431535b7fef15987c2_1648798695_3748.png
 


기본 브라우저의 로컬호스트가 실행된다. 

http://localhost:3000 

(* 참고 : 동일한 LAN이라면 http://172.30.1.48:3000 으로 스마트폰에서도 접속 가능하다) 



결과화면 


 8e90517b1e230e3a6cf5225af1041c79_1648720472_3383.png