summaryrefslogtreecommitdiff
path: root/app/client/auth/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-09-16 22:40:05 +0200
committerJules Laplace <julescarbon@gmail.com>2018-09-16 22:40:05 +0200
commitd3e4bb3ed2585859a3adeb7eeff35b7c75ebd840 (patch)
treee88e9edae5a63328fb1acc625e5624990717d20f /app/client/auth/index.js
parent189be96150fbd49766228cf50c6a89279542565c (diff)
auth gate on main app. pull in auth routes from bucky.
Diffstat (limited to 'app/client/auth/index.js')
-rw-r--r--app/client/auth/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/client/auth/index.js b/app/client/auth/index.js
new file mode 100644
index 0000000..5e6b2b0
--- /dev/null
+++ b/app/client/auth/index.js
@@ -0,0 +1,11 @@
+import Gate from './auth.gate';
+import Login from './login.component';
+import Logout from './logout.component';
+import Signup from './signup.component';
+
+export default {
+ Gate,
+ Login,
+ Logout,
+ Signup,
+} \ No newline at end of file