diff options
Diffstat (limited to 'ui/app/accounts/new.js')
-rw-r--r-- | ui/app/accounts/new.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ui/app/accounts/new.js b/ui/app/accounts/new.js deleted file mode 100644 index 07fc1e672..000000000 --- a/ui/app/accounts/new.js +++ /dev/null @@ -1,30 +0,0 @@ -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)(COMPONENTNAME) - -function mapStateToProps (state) { - return {} -} - -inherits(COMPONENTNAME, Component) -function COMPONENTNAME () { - Component.call(this) -} - -COMPONENTNAME.prototype.render = function () { - const props = this.props - - return ( - h('div', { - style: { - background: 'red', - }, - }, [ - `Hello, ${props.sender}`, - ]) - ) -} - |