diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-07-25 08:04:13 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-07-25 08:05:07 +0800 |
commit | a22adec66fd0c541eb350ea424a6b00d179eedaf (patch) | |
tree | 684b5ffca43944b0aaf33a99dbb6edcdc04e620e /responsive-ui/app/accounts/import/seed.js | |
parent | fcde52f39070160623be5a03455d9d5c84a99f36 (diff) | |
download | tangerine-wallet-browser-a22adec66fd0c541eb350ea424a6b00d179eedaf.tar.gz tangerine-wallet-browser-a22adec66fd0c541eb350ea424a6b00d179eedaf.tar.zst tangerine-wallet-browser-a22adec66fd0c541eb350ea424a6b00d179eedaf.zip |
Replace ui with responsive-ui
Diffstat (limited to 'responsive-ui/app/accounts/import/seed.js')
-rw-r--r-- | responsive-ui/app/accounts/import/seed.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/responsive-ui/app/accounts/import/seed.js b/responsive-ui/app/accounts/import/seed.js deleted file mode 100644 index b4a7c0afa..000000000 --- a/responsive-ui/app/accounts/import/seed.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)(SeedImportSubview) - -function mapStateToProps (state) { - return {} -} - -inherits(SeedImportSubview, Component) -function SeedImportSubview () { - Component.call(this) -} - -SeedImportSubview.prototype.render = function () { - return ( - h('div', { - style: { - }, - }, [ - `Paste your seed phrase here!`, - h('textarea'), - h('br'), - h('button', 'Submit'), - ]) - ) -} - |