Payload 썸네일형 리스트형 React Hooks React v16.8에 React Hooks라는 기능이 추가가 되었다. 이 기능은 기존 state 기능을 Functional component에서도 가져다 사용할 수 있는 기능이다.기본 사용법은 아래와 같다.import React, { useState } from 'react'; function Example() { // Declare a new state variable, which we'll call "count" const [count, setCount] = useState(0); return ( You clicked {count} times setCount(count + 1)}> Click me );}기존에 이와같은 기능을 구현하려면 class component를 만들어 해당 클래스 내의 stat.. 더보기 이전 1 다음