TypeError: .map is not a function don't understand what's wrong

TypeError: .map is not a function don't understand what's wrong

我不明白为什么这个组件不起作用 这是 link 到 img“因为不知何故我不能 post 直接图像 [1]: https://i.stack.imgur.com/Ax7im.png 感谢您的帮助 这里有代码:

import React from 'react';
import ReactDOM from 'react-dom';
import Postitem from "./Postitem";

const Postlist=(post,title)=>{

return (
<div>
         <h1 style={{textAlign: 'center'}}>{title}</h1>
{post.map((post) =>
 <Postitem post={post} key={post.id}/>)};
</div>
 
)};
export default Postlist;
      

检查此组件的“post”变量中的内容。如果你使用“post.map”函数,那么它必须是一个数组。

React 函数组件只接受一个参数,它是一个包含所有 props 的对象。假设您在渲染时将 post 道具作为数组传递,将您的函数声明固定为此将起作用:

const Postlist=({post,title})=>{
  // component body here, as above
}