Option: pre-render articles via server-side page load & pass them directly into component via props. You'd still need to wait for the JS bundle to load before users would see the list, but it would cut out an extra round-trip to your server
render(
<ArticleFeed articles={articlesArrayProvidedFromPageLoad} />,
document.getElementById('#article-feed-root')
);