- git clone 해가서 쓰면 됩니다
- npm i 한번 해줘야 합니다.
- 파일 구조 미리 보기
📦 REACT_TYPESCRIPT_SETTING_FILE
├─ .gitignore
├─ README.md
├─ package-lock.json
├─ package.json
├─ public
│ ├─ index.html
│ ├─ manifest.json
│ └─ robots.txt
├─ src
│ ├─ App.test.tsx
│ ├─ App.tsx
│ ├─ assets
│ │ └─ .gitkeep
│ ├─ components ( 컴포넌트 )
│ │ ├─ .gitkeep
│ │ └─ public ( 퍼블릭 컴포넌트 )
│ │ ├─ .gitkeep
│ │ └─ index.tsx ( export file )
│ ├─ index.css
│ ├─ index.tsx
│ ├─ interfaces ( 인터페이스 폴더 )
│ │ └─ .gitkeep
│ ├─ react-app-env.d.ts
│ ├─ reportWebVitals.ts
│ ├─ setupTests.ts
│ ├─ styles ( 글로벌 스타일 & 상수 값 정의 )
│ │ ├─ globalStyle.tsx
│ │ └─ index.tsx
│ └─ utils ( 기타 )
│ └─ .gitkeep
└─ tsconfig.json
©generated by Project Tree Generator