summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/auth/auth.gate.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-03-05 19:10:55 +0100
committerJules Laplace <julescarbon@gmail.com>2021-03-05 19:10:55 +0100
commit0907418ce2c6ca498b02e8e514e4945d79750467 (patch)
treecdccf1157d01f5ead91a454d70e1f1769d945320 /animism-align/frontend/app/views/auth/auth.gate.js
parentd5b6a4ea27f8c905e613363aab365066ad6d9cda (diff)
adding login view
Diffstat (limited to 'animism-align/frontend/app/views/auth/auth.gate.js')
-rw-r--r--animism-align/frontend/app/views/auth/auth.gate.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/animism-align/frontend/app/views/auth/auth.gate.js b/animism-align/frontend/app/views/auth/auth.gate.js
new file mode 100644
index 0000000..498d32a
--- /dev/null
+++ b/animism-align/frontend/app/views/auth/auth.gate.js
@@ -0,0 +1,29 @@
+import React, { Component } from 'react'
+
+import './auth.css'
+
+import actions from 'app/actions'
+
+import AuthLogin from './auth.login'
+
+export default class AuthGate extends Component {
+ constructor(props) {
+ super(props)
+ }
+
+ componentDidMount() {
+ // actions.site.loadProject()
+ }
+
+ componentDidUpdate() {
+
+ }
+
+ render() {
+ return (
+ <div className='auth'>
+ <AuthLogin />
+ </div>
+ )
+ }
+} \ No newline at end of file