Loading 썸네일형 리스트형 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.. 더보기 [Apache] Server를 비롯한 각종 pre_setting 해주기 아파치 config파일에서 php_admin_value auto_prepend_file /path/to/execute/php_file 위와 같이 해주게 되면 php가 로드될때 미리 로드될 파일을 설정 해줄 수 있음.여기에 auto_prepend_file 대신 다른 naming을 통해 다른 값들을 변경해줄 수 있음. 더보기 이전 1 다음