react

    React 기초

    React 기초

    본 글은 생활코딩 「React 2022 개정판」 영상을 보고 간단히 정리한 글이다. React 환경설정 Node.js 설치 nodejs.org 사이트에 들어가서 Node.js를 설치한다. 현시점 버전은 v16.14.2 create-react-app을 이용한 React 프로젝트 설치 npx create-react-app . .은 현재 디렉토리를 뜻한다. 소스코드 수정 방법 index.js가 기본 파일이다. import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; ReactDOM.rend..