[React] 간단한 CRA + Typescript 기반 React 프로젝트 구성 : 프로젝트 생성, Router 구성
·
React & React Native/환경 설정 및 구성
해당 글에서는 빠르게 구성할 수 있는 CRA를 이용하고 Typescript 템플릿을 이용하여 React 프로젝트를 간단하게 구현하는 방법에 대해 알아봅니다. 1) 프로젝트 환경💡 프로젝트 개발환경- 프로젝트에서 사용된 환경과 버전입니다.환경버전Node18.17.1yarn1.22.19IDEVisual Studio Codereact18.2.0typescript4.9.5react-router6.21.2react-router-dom6.21.2 2) 프로젝트 환경 구성 1. CRA + Typescript 프로젝트 구성# format$ npx create-react-app --template typescript# 프로젝트 구성 예제$ npx create-react-app multi-flex-lunch --t..