Skip to content

Commit

Permalink
Merge branch 'hotfix/cookie-policy-missing'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidballester committed Apr 18, 2020
2 parents 416d7b8 + 83ff88a commit abf57b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { ROUTES } from './constants';
import Welcome from './scenes/welcome';
import PrivacyPolicy from './scenes/privacy-policy';
import CustomThemeProvider from './components/custom-theme-provider';
import CookiePolicy from './scenes/cookie-policy';

export function App() {
return (
Expand All @@ -20,6 +21,7 @@ export function App() {
<Route path={[ROUTES.BASE, ROUTES.GRAPHS]} exact render={() => <Welcome />} />
<Route path={ROUTES.GRAPH} exact render={() => <Graph key="Graph" />} />
<Route path={ROUTES.PRIVACY_POLICY} exact render={() => <PrivacyPolicy />} />
<Route path={ROUTES.COOKIE_POLICY} exact render={() => <CookiePolicy />} />
</CustomThemeProvider>
);
}

0 comments on commit abf57b8

Please sign in to comment.