24/05/24 TIL (가계부 프로젝트 진행)
오늘 한 것
현재, 프로젝트의 최종 구조는 아래와 같이 정했다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
account-book-inter-assignment
├─ README.md
├─ index.html
├─ package.json
├─ src
│ ├─ App.jsx
│ ├─ components
│ │ ├─ AccountForm.jsx
│ │ ├─ AccountList.jsx
│ │ ├─ AccountMonthly.jsx
│ │ └─ GlobalStyle.jsx
│ ├─ main.jsx
│ ├─ pages
│ │ ├─ AccountDetail.jsx
│ │ └─ AccountHome.jsx
│ └─ shared
│ └─ Router.jsx
├─ vite.config.js
└─ yarn.lock
현재 props drilling 방식을 이용해 구현해야하는 조건이 있어서, 원래 작성했던 코드들의 관리 방식을 변경해야했다.
This post is licensed under CC BY 4.0 by the author.