React.FC 사용 지양

함수 선언문을 권장

1. 호이스팅 및 성능

2. displayName 자동 설정

// 함수 선언문 - displayName 자동 설정
function PhotoAttachSection() {} // displayName: "PhotoAttachSection"

// 화살표 함수 - displayName 수동 설정 필요
const PhotoAttachSection = () => {} // displayName: undefined

3. React DevTools 디버깅

4. React.FC 제거와의 일관성

5. Tree Shaking 최적화