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.
20 lines
374 B
20 lines
374 B
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './NewWalletSeed.scss'
|
|
|
|
const NewWalletSeed = ({ seed }) => (
|
|
<div className={styles.container}>
|
|
{
|
|
seed.length > 0 ?
|
|
seed.join(', ')
|
|
:
|
|
'loading'
|
|
}
|
|
</div>
|
|
)
|
|
|
|
NewWalletSeed.propTypes = {
|
|
seed: PropTypes.array.isRequired
|
|
}
|
|
|
|
export default NewWalletSeed
|
|
|