Maintain a variable called isLoading and show a spinner/loading element in the beginning in place of the content. You know all the ids before calling return. Inside your render:
{this.props.isLoading && <div>Loading...</div>}
{!this.props.isLoading && <div>Content fetched</div>}
You have to get the result of the API call in your props .