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 d8fa37014..0e24420c3 100644
--- a/src/app.js
+++ b/src/app.js
@@ -35,6 +35,7 @@ import WelcomeScreen from './containers/auth/WelcomeScreen';
35import LoginScreen from './containers/auth/LoginScreen'; 35import LoginScreen from './containers/auth/LoginScreen';
36import LockedScreen from './containers/auth/LockedScreen'; 36import LockedScreen from './containers/auth/LockedScreen';
37import PasswordScreen from './containers/auth/PasswordScreen'; 37import PasswordScreen from './containers/auth/PasswordScreen';
38import ChangeServerScreen from './containers/auth/ChangeServerScreen';
38import SignupScreen from './containers/auth/SignupScreen'; 39import SignupScreen from './containers/auth/SignupScreen';
39import ImportScreen from './containers/auth/ImportScreen'; 40import ImportScreen from './containers/auth/ImportScreen';
40import PricingScreen from './containers/auth/PricingScreen'; 41import PricingScreen from './containers/auth/PricingScreen';
@@ -97,6 +98,7 @@ window.addEventListener('load', () => {
97 <Route path="/auth/welcome" component={WelcomeScreen} /> 98 <Route path="/auth/welcome" component={WelcomeScreen} />
98 <Route path="/auth/login" component={LoginScreen} /> 99 <Route path="/auth/login" component={LoginScreen} />
99 <Route path="/auth/locked" component={LockedScreen} /> 100 <Route path="/auth/locked" component={LockedScreen} />
101 <Route path="/auth/server" component={ChangeServerScreen} />
100 <Route path="/auth/signup"> 102 <Route path="/auth/signup">
101 <IndexRedirect to="/auth/signup/form" /> 103 <IndexRedirect to="/auth/signup/form" />
102 <Route path="/auth/signup/form" component={SignupScreen} /> 104 <Route path="/auth/signup/form" component={SignupScreen} />