I'm using Reactivesearch, and I'm trying to assign a const variable inside a map function. Specifically in the .map
Like such:
onAllData(data, streamData) {
return (
<div className="grid">
{
data.map((item) =>
const propertyName = item.productName;
<div className="flex-container card" key={item._id}>
<div className="content">
<p>{propertyName}</p>
</div>
</div>
)
}
);
}
const propertyName = item.productName;
is giving me problem. Error states unexpected token
.
Is it possible?