아래는 Detail 함수 내용이고 props와 <Detail count={count} /> 까지 적용했는데
<button onClick={() => {
props.setCount(props.count + 1);
}}>장바구니</button>
오류 없이 실행은 되는데 장바구니 버튼만 누르면
TypeError: props.setCount is not a function. (In 'props.setCount(props.count + 1)', 'props.setCount' is undefined)
라는 에러가 뜨네요 뭐가 문제인지 감이 안 잡히네요 ㅠ