4주차 WIL 회고.
props
import React from "react";
function App() {
return <GrandFather />;
} // GrandFather로 데이터를 보냄
function GrandFather() {
const name = '김할아버지';
return <Mother grandFatherName={name} />;
} // Mother로 grandFatherName을 보냄
function Mother(props) {
return <div>{props.grandFatherName}</div>
} // props로 받은 grandFatherName을 출력.
State
const [name, setName] = useState("김할아버지");
리액트의 리렌더링
저번주차에 배운것
이번주차에 배울것
화이팅.