⛵ 항해99/TIL · WIL ✏️

[WIL] 09.04 ~ 09.10

hhhhy 2023. 9. 10. 20:25

 LifeCycle 

 

 react hooks 

useState

  • State를 만들 때는 useState()를 사용
const [ value, setValue ] = useState( 초기값 )

 

useEffect

  • 리액트 컴포넌트가 렌더링될 때마다 특정 작업을 수행하도록 설정할 수 있는 Hook
// src/App.js

import React, { useEffect } from "react";

const App = () => {

  useEffect(() => {
		// 이 부분이 실행된다.
    console.log("hello useEffect");
  });

  return <div>Home</div>;
}

export default App;