키모스토리

#5 리액트 시작하기 본문

Web Devlopment/ReactJs

#5 리액트 시작하기

키모형 2025. 3. 12. 13:30
반응형

react 프로젝트가 실행이 되면 home\src\index.js  파일이  실행이 됨

 

코드를 보면 root element를 찾아서 root.render() 안에 있는 컴포넌트를 실행하도록 되어 있음

 

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);

 

이때  /pulbic/index.html 파일 안에 있는 <div id="root"></div> 안에 <App /> 의 내용을 삽입해 준 뒤에 브라우저로 랜더링이 된다. 

 

/publc/index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#000000" />
    <meta
      name="description"
      content="Web site created using create-react-app"
    />
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
    <!--
      manifest.json provides metadata used when your web app is installed on a
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->
    <title>React App</title>
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>
</html>

 

index.html 파일에는 <div id="root"></div> 가 존재해야 하며 나머지 부분에 프로젝트에 필요한 내용을 추가, 수정 해서 화면을 구성할 수 있다.  

 

 

/src/App.js 파일의 return 문 안에 적절한 코드를 작성한다.

이때 사용되는 문법이 리엑트에서 사용되는 JSX (A syntax extension to JavaScript) 이고 앞으로 해당 문법을

어떻게 사용하는 지 학습하도록 한다.

import logo from './logo.svg';
import './App.css';

function App() {
  return (
  	// 이곳에 JSX 구문 삽입
    <div className="App">
      <header className="App-header">
        <img src={logo} className="App-logo" alt="logo" />
        <p>
          Edit <code>src/App.js</code> and save to reload.
        </p>
        <a
          className="App-link"
          href="https://reactjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          Learn React
        </a>
      </header>
    </div>
    
  );
}

export default App;

 

반응형

'Web Devlopment > ReactJs' 카테고리의 다른 글

#7 배열(map, filter, slice, concat, spread연산자)  (0) 2025.03.21
#6 JSX  (0) 2025.03.21
#4 create-react-app  (0) 2025.03.12
#3 React 정의  (1) 2025.03.12
#2 SPA (Single Page Application)  (0) 2025.03.12