aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.js')
-rw-r--r--src/app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app.js b/src/app.js
index 797c178a3..e16c01456 100644
--- a/src/app.js
+++ b/src/app.js
@@ -32,6 +32,7 @@ import EditSettingsScreen from './containers/settings/EditSettingsScreen';
32import InviteSettingsScreen from './containers/settings/InviteScreen'; 32import InviteSettingsScreen from './containers/settings/InviteScreen';
33import WelcomeScreen from './containers/auth/WelcomeScreen'; 33import WelcomeScreen from './containers/auth/WelcomeScreen';
34import LoginScreen from './containers/auth/LoginScreen'; 34import LoginScreen from './containers/auth/LoginScreen';
35import LockedScreen from './containers/auth/LockedScreen';
35import PasswordScreen from './containers/auth/PasswordScreen'; 36import PasswordScreen from './containers/auth/PasswordScreen';
36import SignupScreen from './containers/auth/SignupScreen'; 37import SignupScreen from './containers/auth/SignupScreen';
37import ImportScreen from './containers/auth/ImportScreen'; 38import ImportScreen from './containers/auth/ImportScreen';
@@ -94,6 +95,7 @@ window.addEventListener('load', () => {
94 <IndexRedirect to="/auth/welcome" /> 95 <IndexRedirect to="/auth/welcome" />
95 <Route path="/auth/welcome" component={WelcomeScreen} /> 96 <Route path="/auth/welcome" component={WelcomeScreen} />
96 <Route path="/auth/login" component={LoginScreen} /> 97 <Route path="/auth/login" component={LoginScreen} />
98 <Route path="/auth/locked" component={LockedScreen} />
97 <Route path="/auth/signup"> 99 <Route path="/auth/signup">
98 <IndexRedirect to="/auth/signup/form" /> 100 <IndexRedirect to="/auth/signup/form" />
99 <Route path="/auth/signup/form" component={SignupScreen} /> 101 <Route path="/auth/signup/form" component={SignupScreen} />