You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
379 B
15 lines
379 B
// @flow
|
|
|
|
import React from 'react'
|
|
import type { Account } from '@ledgerhq/live-common/lib/types'
|
|
|
|
import CurrentAddress from 'components/CurrentAddress'
|
|
|
|
type Props = {
|
|
account: Account,
|
|
}
|
|
|
|
export default function CurrentAddressForAccount(props: Props) {
|
|
const { account, ...p } = props
|
|
return <CurrentAddress account={account} address={account.freshAddress} {...p} />
|
|
}
|
|
|