summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/site/component.template.js
blob: 85273f35525c660b1cdaf8eba89bd67f2bf1352b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React, { Component } from 'react'
import { connect } from 'react-redux'

import actions from 'app/actions'

class ComponentTemplate extends Component {
  componentDidMount() {
  }
  render() {
    const { } = this.props
    return (
      <div className="">
      </div>
    )
  }
}

const mapStateToProps = state => ({
})

export default connect(mapStateToProps)(ComponentTemplate)