Is there a way to structure your code such that components will load in parallel or asynchronously?
Currently my structure is:
<Stream>
{listOfArticles }
</Stream>
The {listOfArticles} creates an array of articles, and each article is set to load from the Embedly Card API, so the network tab shows a staggered, linear loading that takes up to 10seconds for 25 items.
thanks!