KDT-IaaS-Class-One-Group / KDT-IaaS-1team-ERP

0 stars 2 forks source link

user - Q&A 페이지 글 작성 후 모달 초기화 #80

Open seunghee1108 opened 9 months ago

seunghee1108 commented 9 months ago

user/app/board/page.tsx


const handleWriteButtonClick = () => {
    if (!showForm) {
      setShowForm(true);
      setBoardInfo({
        titleKey: "",
        adddate: "",
        username: "",
        password: "",
        title: "",
        content: "",
        reply: "",
      });
      setSelectedBoard(null); // 글쓰기 모달이 열릴 때 선택된 게시글 초기화
    }
  };
`
``