I'm wondering how the loading experience is for the IndexRedirect. In this example:
<Route path="/" component={App}>
<IndexRedirect to="/welcome" />
<Route path="welcome" component={Welcome} />
<Route path="about" component={About} />
</Route>
Does it load the App component first and then redirect to the welcome path or how does it work?