-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 내 예약 목록에서 예약 수정, 삭제 하기 #884
Conversation
import { useInfiniteQuery } from 'react-query'; | ||
import { queryMemberReservationHistory } from './../../api/guestReservation'; | ||
|
||
const useMemberReservationHistory = () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return 타입 없다고 노란줄 뜨는데, 타입지정을 못하겠어요...넘 너려움ㅠ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
사실 추론이 잘 되기때문에 꼭 필요한가..? 싶은 의문도 있습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 커스텀 훅이나 컴포넌트에 대해서는 명시적인 타입 선언이 필요한가? 하는 생각이 들어요. 나중에 ESLint rule을 수정하는 방향으로 가면 좋을 것 같아요.
UI가 넘나리 이쁘네요 고생 많았썬 👍 👍 👍 내일 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고 많으셨습니다!
import { useInfiniteQuery } from 'react-query'; | ||
import { queryMemberReservationHistory } from './../../api/guestReservation'; | ||
|
||
const useMemberReservationHistory = () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 커스텀 훅이나 컴포넌트에 대해서는 명시적인 타입 선언이 필요한가? 하는 생각이 들어요. 나중에 ESLint rule을 수정하는 방향으로 가면 좋을 것 같아요.
구현 기능
논의하고 싶은 내용
Close #881