// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // // SPDX-License-Identifier: BSD-3-Clause import React, { Component } from 'react'; import { DivWindowContent } from '../../assets/theme/shared/styledComponents/DivWindowContent.styles'; import RequireHealth from '../../RequireHealthOverlay'; import TokenBalance from './TokenBalance'; import withTokens from '../../utils/withTokens'; @withTokens class TokensList extends Component { render () { const { tokensArray } = this.props; // Show empty token placeholder if tokens have not been loaded yet const shownArray = tokensArray.length ? tokensArray : [{}]; return (
    {shownArray.map(( token, index // With empty tokens, the token.address is not defined, so we prefix with index ) => (
  • ))}
); } } export default TokensList;