
230112 React project
·
Skills/React
SPA (single page application) - main page(header, main component, footer) - sub page(header, sub component, footer) - detail page(header, detail component, footer) => Route 필요 Virtual DOM - 업데이트 된 부분만 component 가져와서 redering => routing이라 함 * 방법 1. TERMINAL 접속 2. npm init react-app test(파일명) (설치하는 방법은 다양함) - npx create-react-app test - npm i -g react-app test npm start Starts the development serv..