I am on the project with react.js
For the project, I am supposed to include board with infinite scroll like Facebook
In that, I have a question.
When I scroll the board and recall more post like Facebook, is it working
whether it draws only additional posts under the bottom of post or
it recalls the whole list and redraws it
ex) case 1 : {1,2,3} > scroll > {1,2,3} + {4,5} (additional posts)
case 2 : {1,2,3} > scroll > {1,2,3,4,5} (whole posts)
if I do case 1, I wanna know-how.
Thanks!