- 프론트엔드 공부 36일차 - 이번 실습에서는 실제 데이터를 DB에 저장할 수 있도록 수정하였다. const CREATE_BOARD = gql` mutation createBoard($createBoardInput: CreateBoardInput! ){ createBoard(createBoardInput: $createBoardInput ){ _id } }` const OnclickRegist= async() => { if (!writer) { setWriterError("이름을 입력해주세요."); } if (!pw) { setPwError("비밀번호를 입력해주세요."); } if (!title) { setTitleError..