ts(2559) error 1. issue react 공식문서에서는 컴포넌트가 원시 타입의 값, React 엘리먼트 혹은 함수 등 어떠한 props도 받을 수 있다는 것을 강조하며 상속보다는 props와 합성을 권장한다. 다음은 합성을 하는 도중 children을 prop으로 전달하는 과정을 생략해 발생한 타입 에러이다. > Type '{ children: Element; }' has no properties in common with type 'IntrinsicAttributes'.ts(2559) /pages/index.tsx Header와 Sidebar Component