Какая версия react-router-dom? Скорее всего обновление поможет.
А так, одно из быстрых решений сделать так:
<Route path="/" exact render={props => <Main {...props} />} />
<Route path="/exercises" exact render={props => <ExerciseList {...props} />} />
...