YU-Quiz / web

front(react)
2 stars 0 forks source link

feature - 게시글 생성 페이지 및 컴포넌트 디자인 완료 #17

Closed cryingdryice closed 2 months ago

cryingdryice commented 2 months ago

개요

PostCreator 컴포넌트를 구현하여 사용자가 새로운 게시글을 작성할 수 있는 기능을 추가했습니다. 이 페이지는 카테고리 선택, 제목 입력, 내용 입력 기능을 제공하며, 작성된 게시글을 제출하거나 목록으로 돌아갈 수 있는 버튼을 포함하고 있습니다.

구현 사항

컴포넌트 구조

plaintext코드 복사
PostCreator (루트 컴포넌트)
│
└── <form className="new-post-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