I made an error page and redirect to it if the route is incorrect. But when I open localhost, the main page is error. But I need '/main'
<Route path="/activities/" exact>
</Route>
<Route path="/error" component={ErrorComponent} />
<Redirect from="*" to="/error" />
<Route path="/">
<Redirect to="/main" />
</Route>