aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/import/json.js
blob: 22cf95cfd99e8f867034be58464713511be2c1e3 (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
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)(JsonImportSubview)

function mapStateToProps (state) {
  return {}
}

inherits(JsonImportSubview, Component)
function JsonImportSubview () {
  Component.call(this)
}

JsonImportSubview.prototype.render = function () {
  return (
    h('div', {
      style: {
      },
    }, [
      `Upload your json file here!`,
    ])
  )
}