참고 https://merrily-code.tistory.com/209
자식 요소 감싸는 래퍼 컴포넌트를 작성할 때 자식 요소인 children 속성의 타입을 명시해야 하는 경우가 많다.
// ReactChild 타입에 string, number 타입이 포함되어 있습니다. type ReactNode = ReactChild | ReactFragment | ReactPortal | boolean | null | undefined;