I am trying to get data from a list and yet is giving an error
{community.map((community) => {
return (
<p className="font-normal text-[15px]">
{community.description}
<span className="text-[#607087]">Read More</span>
</p>
);
})}
This is giving me an error :
community.map is not a function
I know it’s not a function. Is there anything I am missing?
New contributor
Jimoh Tajudeen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
4