// @flow import React, { Component } from 'react' import ReactSVG from 'react-svg' import { FaCircle } from 'react-icons/lib/fa' import styles from './Wallet.scss' class Wallet extends Component { componentWillMount() { const { fetchInfo, fetchPeers, fetchChannels } = this.props fetchInfo() fetchPeers() fetchChannels() } render() { const { info, peers: { peersLoading, peers }, channels: { channelsLoading, channels } } = this.props return (