aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.js
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-07-01 13:39:55 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-07-01 13:39:55 +0700
commitb43b265e8d383eb9b6f0a31f096f52ad9f7171c2 (patch)
tree6b258426b849520ae29d92a44fe2aa7c608ad80b /src/app.js
parentAdd features list to README (diff)
parentRevert: fix spellchecker (diff)
downloadferdium-app-b43b265e8d383eb9b6f0a31f096f52ad9f7171c2.tar.gz
ferdium-app-b43b265e8d383eb9b6f0a31f096f52ad9f7171c2.tar.zst
ferdium-app-b43b265e8d383eb9b6f0a31f096f52ad9f7171c2.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/app.js')
-rw-r--r--src/app.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app.js b/src/app.js
index f6092bf60..cb3e37c64 100644
--- a/src/app.js
+++ b/src/app.js
@@ -43,6 +43,8 @@ import SubscriptionPopupScreen from './containers/subscription/SubscriptionPopup
43import WorkspacesScreen from './features/workspaces/containers/WorkspacesScreen'; 43import WorkspacesScreen from './features/workspaces/containers/WorkspacesScreen';
44import EditWorkspaceScreen from './features/workspaces/containers/EditWorkspaceScreen'; 44import EditWorkspaceScreen from './features/workspaces/containers/EditWorkspaceScreen';
45import { WORKSPACES_ROUTES } from './features/workspaces'; 45import { WORKSPACES_ROUTES } from './features/workspaces';
46import AnnouncementScreen from './features/announcements/components/AnnouncementScreen';
47import { ANNOUNCEMENTS_ROUTES } from './features/announcements';
46 48
47// Add Polyfills 49// Add Polyfills
48smoothScroll.polyfill(); 50smoothScroll.polyfill();
@@ -73,6 +75,7 @@ window.addEventListener('load', () => {
73 <I18N> 75 <I18N>
74 <Router history={history}> 76 <Router history={history}>
75 <Route path="/" component={AppLayoutContainer}> 77 <Route path="/" component={AppLayoutContainer}>
78 <Route path={ANNOUNCEMENTS_ROUTES.TARGET} component={AnnouncementScreen} />
76 <Route path="/settings" component={SettingsWindow}> 79 <Route path="/settings" component={SettingsWindow}>
77 <IndexRedirect to="/settings/recipes" /> 80 <IndexRedirect to="/settings/recipes" />
78 <Route path="/settings/recipes" component={RecipesScreen} /> 81 <Route path="/settings/recipes" component={RecipesScreen} />