From a7af47db928590af8100f16e9e9d36ae98623357 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Fri, 4 Nov 2016 14:39:53 -0700 Subject: Add import account placeholder template --- ui/app/accounts/import.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 ui/app/accounts/import.js (limited to 'ui/app/accounts/import.js') diff --git a/ui/app/accounts/import.js b/ui/app/accounts/import.js deleted file mode 100644 index d15b30fd2..000000000 --- a/ui/app/accounts/import.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: 'blue', - }, - }, [ - `Hello, ${props.sender}`, - ]) - ) -} - -- cgit v1.2.3