aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/new.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-01-18 05:58:54 +0800
committerDan Finlay <dan@danfinlay.com>2017-01-18 05:58:54 +0800
commit958cbfbde44c201cf71f5dfcb7b1748bb43e597f (patch)
tree17949bcdd27172541ff374d8b8bf44ccd570af92 /ui/app/accounts/new.js
parent77bd010543855fafe21ac37e282bc8137ef7a7d8 (diff)
parentb3cb675a8bd406bd16aa74ff209032075f9b31d7 (diff)
downloadtangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar.gz
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar.bz2
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar.lz
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar.xz
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.tar.zst
tangerine-wallet-browser-958cbfbde44c201cf71f5dfcb7b1748bb43e597f.zip
Merge branch 'i328-MultiVault-v1' into i715-AddImportMenu
Diffstat (limited to 'ui/app/accounts/new.js')
-rw-r--r--ui/app/accounts/new.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/ui/app/accounts/new.js b/ui/app/accounts/new.js
new file mode 100644
index 000000000..07fc1e672
--- /dev/null
+++ b/ui/app/accounts/new.js
@@ -0,0 +1,30 @@
+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}`,
+ ])
+ )
+}
+