sm 기술 블로그

2강. 소스코드 수정방법 본문

리액트

2강. 소스코드 수정방법

sm_hope 2022. 8. 29. 20:40

src 폴더의 index.js가 입구파일이다.

 

npm run start를 이용해 앱을 구동하면 index를 이용해 화면이 구현된다.

//index.js

import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

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

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();

UI가 구현되는 방법은

  <React.StrictMode>
    <App />
  </React.StrictMode>

<App />에 의해 UI전체가 구현되는 것이다.

 

그러면 App의 실제 코드는 어디에서 있는가.

App.js 에 코드가 담겨져 있고, 

import App from './App';

import를 통해 가져오는 것이다.

따라서 UI를 수정하는 방법은 

// App.js

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

function App() {
  return (
    <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;

다음과 같은 App.js에서  수정을 진행하는 것이다.

 

 

렌더링을 진행하면 

//index.js

import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

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

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();

root에 렌더링를 진행하는데, 이것은

index.html에 담겨져 있다.

 


배포하는 방법
npm run build

의 명령어를 실행한다.

정상적으로 실행되면 다음과 같은 구문이 나오게 된다.

 

npx serve -s build

를 실행하면 배포되는 서버를 실행 한 것이다.

'리액트' 카테고리의 다른 글

4강. props  (0) 2022.08.30
3강. 컴포넌트 만들기  (0) 2022.08.29
1강. 환경설정  (0) 2022.08.29
[리액트 React] useEffect()  (0) 2022.08.26
[리액트 React] 리액트 18버전 신기능 3개  (0) 2022.05.29
Comments