"use client"; import React from "react"; type NoticeValidationModalProps = { open: boolean; onClose: () => void; }; /** * 공지사항 작성 시 제목 또는 내용이 비어있을 때 표시되는 검증 모달 */ export default function NoticeValidationModal({ open, onClose, }: NoticeValidationModalProps) { if (!open) return null; return (
내용 또는 제목을 입력해 주세요.