보안 규칙

함수

const Component = ({}: Props) => {
	
}
// good
const A = () => {}

// bad
const A = function A(){}

함수명 - ‘~Handler’

const searchHandler = () =>

const searchInputHandler = () =>

event는 e로 쓰기

const handleOnKeyPress = (e) =>

Typescript 규칙

types.d.ts 파일 이용하기