Skip to content

1120(월) FE 회의록

김가은 edited this page Nov 20, 2023 · 1 revision

대략적인 MVP 나누기

  • 랜딩페이지
  • 로그인
  • 회원가입
  • 글쓰기
  • 글쓰기 시 별 커스텀
  • 글 조회
  • 하단바

이번주 대략적 역할분담

  • 글쓰기 + 글조회 + input 컴포넌트 + textArea 컴포넌트: 김동민
  • 랜딩페이지 + 로그인 + 로그아웃 + Button 컴포넌트들: 이백범
  • 회원가입 + 하단바 + 검색 + 라우팅 + search 컴포넌트 + toast 컴포넌트: 김가은

좀이따 할 것

  • 폴더구조 구성
  • 디자인시스템 페어프로그래밍으로 적용
  • 공통 컴포넌트 구현
  • 백엔드와 API 포맷 논의
.
├── ...config (package.json, vite.config.ts)
├── public
└── src/
    ├── app/
    │   ├── App.tsx
    │   └── Router.tsx
    ├── pages/
    │   ├── home/
    │   │   ├── index.ts
    │   │   ├── ui
    │   │   └── model
    │   └── landing/
    │       ├── index.ts
    │       ├── ui
    │       └── model
    ├── widgets/
    │   ├── galaxy/
    │   │   ├── index.ts
    │   │   ├── ui
    │   │   ├── lib
    │   │   └── model
    │   ├── login/
    │   │   ├── index.ts
    │   │   ├── ui/
    │   │   │   ├── LoginModal.tsx
    │   │   │   └── index.ts
    │   │   ├── model/
    │   │   │   ├── verification.ts
    │   │   │   └── index.ts
    │   │   └── api/
    │   │       ├── login.ts
    │   │       └── index.ts
    │   └── signup/
    │       ├── index.ts
    │       ├── ui/
    │       │   ├── SignUpModal.tsx
    │       │   └── index.ts
    │       ├── model/
    │       │   ├── verification.ts
    │       │   └── index.ts
    │       └── api/
    │           ├── signUp.ts
    │           ├── duplicateCheck.ts
    │           └── index.ts
    ├── features/
    │   └── backgroundStar/
    │       ├── index.ts
    │       ├── ui
    │       └── model
    ├── entities/
    │   └── postStar/
    │       ├── index.ts
    │       ├── ui
    │       └── model
    └── shared/
        ├── api
        ├── config/
        │   └── constant.ts
        ├── lib/
        │   ├── hooks
        │   └── constant
        └── ui/
            ├── input/
            │   ├── Input.tsx
            │   └── index.ts
            ├── button/
            │   ├── Button.tsx
            │   └── index.ts
            └── modal/
                ├── Modal.tsx
                └── index.ts

소개

규칙

학습 기록

[공통] 개발 기록

[재하] 개발 기록

[준섭] 개발 기록

회의록

스크럼 기록

팀 회고

개인 회고

멘토링 일지

Clone this wiki locally