summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/views/essay.js
blob: 5775e3aa2b0ea020c89a66d3e39ebc593e9218a8 (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
import React, { Component } from 'react'
import actions from 'site/actions'

import "./essay.css"

export default class Artists extends Component {
  constructor(props) {
    super(props)
    this.handleClick = this.handleClick.bind(this)
    this.state = {
    }
  }

  componentDidMount() {
    actions.site.interact()
  }

  handleClick(e) {
    e && e.preventDefault()
  }

  render() {
    return (
      <div className="page-essay">
      </div>
    )
  }
}