nifty-wallet/ui/app/new-keychain.js

30 lines
577 B
JavaScript
Raw Normal View History

2016-10-15 10:48:12 -07:00
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)(NewKeychain)
function mapStateToProps (state) {
return {}
}
inherits(NewKeychain, Component)
function NewKeychain () {
Component.call(this)
}
NewKeychain.prototype.render = function () {
2016-10-20 11:33:18 -07:00
// const props = this.props
2016-10-15 10:48:12 -07:00
return (
h('div', {
style: {
background: 'blue',
},
}, [
2016-10-20 11:33:18 -07:00
h('h1', `Here's a list!!!!`),
2016-10-15 10:48:12 -07:00
])
)
}