프론트엔드 코딩 컨벤션함수명 | 변수명소문자 카멜케이스 사용: const helloWorld = () => {};배열 변수명 끝에 List:const helloList = ['hello', 'world'];boolean 변수는 is, has, can으로 시작:const isLoading = false;생성자는 파스칼케이스 사용:class HelloWorld {};상수는 대문자 스네이크 케이스:const HELLO_WORLD = 'helloWorld';리액트커스텀 훅은 use 접두사:const useCustomHook = () => {};고차 컴포넌트는 with 접두사:const withAuth = (Component) => (props) => { /* ... */ };이벤트 핸들러는 handle 접두사:..