작성한 질문수
Slack 클론 코딩[실시간 채팅 with React]
메뉴 만들기
해결된 질문
작성
·
367
수정됨
0
interface Props { show: boolean; onCloseModal: () => void; style: CSSProperties; closeButton?: boolean; } const Menu: FC<React.PropsWithChildren<{}>> = ({ children, style, show, onCloseModal, closeButton }) => {...}
이 상태에선 Props타입을 어떻게 넣어야 하는 건가요?
답변 1
1
PropsWithChildren<Props> 하시면 됩니다.
감사합니다!
감사합니다!