item_id 부분
Type 'string' is not assignable to type 'ObjectId'.
result={result} 부분
Type 'WithId[]' is missing the following properties from type '{ _id: string; title: string; content: string; }': _id, title, contentts(2739)
ListItem.tsx(4, 3): The expected type comes from property 'result' which is declared here on type 'IntrinsicAttributes & ListItemProps'
map부분
Property 'map' does not exist on type '{ _id: string; title: string; content: string; }'.
서버 component
collection에 type 추가하고 result의 _id를 string화 하므로 type을 두가지로 사용.
클라이언트 component
props에 []추가
클라이언트 component의 타입도 동일하게 변경하니 에러가 사라졌다