YU-Quiz / web

front(react)
2 stars 0 forks source link

feature - 게시글 수정 페이지 및 컴포넌트 디자인 완료 #19

Closed cryingdryice closed 2 months ago

cryingdryice commented 2 months ago

개요

PostFix 컴포넌트를 구현하여 기존 게시글을 수정할 수 있는 기능을 추가했습니다. 이 컴포넌트는 기존 게시글 데이터를 불러와 사용자가 카테고리, 제목, 내용을 수정한 후 이를 제출할 수 있도록 설계되었습니다.

구현 사항

컴포넌트 구조

plaintext코드 복사
PostFix (루트 컴포넌트)
│
└── <form className="postfix-form"> (게시글 수정 폼)
    │
    ├── <label htmlFor="category">카테고리</label>
    ├── <select id="category"> (카테고리 선택 드롭다운)
    ├── <label htmlFor="title">제목</label>
    ├── <input type="text" id="title"> (제목 입력 필드)
    ├── <label htmlFor="content">내용</label>
    ├── <textarea id="content"> (내용 입력 필드)
    └── <div className="button-container"> (버튼 컨테이너)
        ├── <button type="submit" className="submit-btn">게시글 수정</button> (수정 버튼)
        └── <button type="button" className="back-btn">목록으로</button> (목록으로 버튼)

추가 설명

기타

스크린샷

image