Skip to content

Commit

Permalink
Fix demo warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Gildas Garcia committed May 11, 2019
1 parent 943d4e8 commit ca524dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/demo/src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import Configuration from './configuration/Configuration';
import Segments from './segments/Segments';

export default [
<Route exact path="/configuration" component={Configuration} />,
<Route exact path="/segments" component={Segments} />,
<Route exact path="/configuration" render={() => <Configuration />} />,
<Route exact path="/segments" render={() => <Segments />} />,
];

0 comments on commit ca524dd

Please sign in to comment.