I have created a simple div and inside this div I have map the array and poplute the data on view. But i want that, Everytime, a funtion should be call automatically when the vertical scolling is end. Please suggest How can implement it.
<div>
{timeLineData.map((item, idx) => (
<Card>
<h3>{item.name}</h3>
<p>{item.name}</p>
<p>{item.name}</p>
<p>{item.name}</p>
</Card>
))}
</div>