error TS2339: Property --- does not exist on type ---.
error TS2559: Type --- has no properties in common with type ---.
codesandbox: src/ConflictTS2339_2559/Container 참고
--> 하위 컴포넌트에서 child prop type을 지정하지 않아 발생
What Happened to the FC Type's Implicit children Prop in @types/react v18?
React: Type {children: Element} has no properties in common with type IntrinsicAttributes
Type '{ children: Element; }' has no properties in common with type 'IntrinsicAttributes'.ts(2559) error 해결하기
error TS2741: Property --- is missing in type ‘{}’ but required in type ---.
codesandbox: src/ConflictTS2741/Container2741 참고
--> 하위 컴포넌트의 필수 프로퍼티를 전달하지 않아 발생
useRef<T>(initialValue: T): MutableRefObject<T>;
--> useRef를 로컬 변수 용도로 사용하는 경우