// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // SPDX-License-Identifier: MIT import React, { Component } from 'react'; import Balance from './Balance'; class Accounts extends Component { render () { return (
); } } export default Accounts;