每次我重定向时,React Router都会在页面底部的页脚中一直加载我的页面。有什么建议吗?
<Provider store={store}>
<Router>
<Nav />
<Switch>
<Route exact path='/' component={Home} />
<Route exact path='/login' component={Login} />
<Route exact path='/register' component={Register} />
<Route exact path='/dashboard' component={Dashboard} />
<Route exact path='/subscriptions' component={Subscriptions} />
<Route exact path='/newPost' component={NewPost} />
</Switch>
<Footer />
</Router>
</Provider>