import React from "react" import { Tabs, Tab } from "react-bootstrap" import { LEDGER, TREZOR } from "unchained-wallets" import { accountDerivationPath } from "@swan-bitcoin/xpub-lib" import { ExtPubKeyImporter } from "./xpubImporter" const HardwareWallets = ({ purpose, accountNumber, network }) => { const path = accountDerivationPath({ purpose, accountNumber, network }) return ( {[LEDGER, TREZOR].map(type => ( ))} ) } export { HardwareWallets }