📁Frontend/📘React
[React] Component (함수형)
Hoon2
2022. 7. 23. 14:52
728x90
자식 컴포넌트
import React from "react";
const BucketList = (props) => { //부모한테 데이터 받기 props
console.log(props);
return (
<div>버킷 리스트</div>
);
}
export {BucketList}; //부모한테 보낼때 export
// export default BucketList;
부모 컴포넌트
상위 폴더 데이터 가져오기 : ../ , ../../
728x90