작성
·
231
1
답변 2
1
0
보내주신 코드가 prop을 통해 넘기는 방법이에요~ ㅎㅎ
const Form = ({ handleFormSubmit }) => {
handleFormSubmit();
const Form = (props) => {
props.handleFormSubmit();
위 코드와 아래 코드는 동일합니다.
이는 자바스크립트의 Destructuring(구조 분해 할당) 이라는 문법이에요.
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
위 링크 보시면 이해갈거예요~!
또 궁금하신 점 있으면 질문 주세요.