blob: 8677d0c37bb616bf45483a7a170609f0743cac13 (
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 "./artists.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-artists">
</div>
)
}
}
|