From 947bc1ce4bb6bcdf478951d56d8f377a5486bf47 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Thu, 27 Apr 2017 01:12:15 -0500 Subject: [PATCH] Create stateless component for Ledger Trezor Warning on GenerateWallet Page --- .../components/LedgerTrezorWarning.jsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 common/containers/Tabs/GenerateWallet/components/LedgerTrezorWarning.jsx diff --git a/common/containers/Tabs/GenerateWallet/components/LedgerTrezorWarning.jsx b/common/containers/Tabs/GenerateWallet/components/LedgerTrezorWarning.jsx new file mode 100644 index 00000000..1f9c5f0b --- /dev/null +++ b/common/containers/Tabs/GenerateWallet/components/LedgerTrezorWarning.jsx @@ -0,0 +1,21 @@ +import React from "react"; + +const LedgerTrezorWarning = () => ( +
+
+
+
+
+
+
+

Ledger & TREZOR users: Do not generate a new + wallet—your + hardware device is your wallet.
+ You + can connect to your device, see your addresses, or send ETH or Tokens + here. +

+
+); + +export default LedgerTrezorWarning;