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.
26 lines
662 B
26 lines
662 B
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import AssetBreadcrumb from './asset-breadcrumb'
|
|
|
|
const AssetNavigation = ({ accountName, assetName, onBack, optionsButton }) => {
|
|
return (
|
|
<div className="asset-navigation">
|
|
<AssetBreadcrumb accountName={accountName} assetName={assetName} onBack={onBack} />
|
|
{ optionsButton }
|
|
</div>
|
|
)
|
|
}
|
|
|
|
AssetNavigation.propTypes = {
|
|
accountName: PropTypes.string.isRequired,
|
|
assetName: PropTypes.string.isRequired,
|
|
onBack: PropTypes.func.isRequired,
|
|
optionsButton: PropTypes.element,
|
|
}
|
|
|
|
AssetNavigation.defaultProps = {
|
|
optionsButton: undefined,
|
|
}
|
|
|
|
export default AssetNavigation
|
|
|