blob: 89c79bedc75c8c535bfeb6a50884d9b2efbb6f20 (
plain) (
blame)
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
30
31
32
33
34
35
36
|
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
module.exports = connect(mapStateToProps)(ImportIndex)
function mapStateToProps (state) {
return {}
}
inherits(ImportIndex, Component)
function ImportIndex () {
Component.call(this)
}
ImportIndex.prototype.render = function () {
const props = this.props
return (
h('.accounts-section.flex-grow', [
// subtitle and nav
h('.section-title.flex-center', [
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: this.goHome.bind(this),
}),
h('h2.page-subtitle', 'Select Account'),
]),
])
)
}
|