summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/auth/auth.gate.js
blob: 498d32a006dcdadbe5ad56162911f72a60eaa797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
    )
  }
}