2👍
If the loading time is directly related to the number of records you’re loading then you could consider loading an initial chunk (e.g. 100 or so) to allow for a quick render and then lazy load the rest in immediately or as needed in same-sized chunks.
Source:stackexchange.com