import React, {Component} from 'react' export default class Header extends Component { constructor(props) { super(props) } static propTypes = { title: React.PropTypes.string, toggleSidebar: React.PropTypes.func, onHeaderRightButtonClick: React.PropTypes.func, isLoggedIn: React.PropTypes.bool }; render() { return (
{/* TODO - don't hardcode image path*/} MyEtherWallet
Open-Source & Client-Side Ether Wallet · v3.6.0    {/**/}    ETH (MyEtherWallet) {/*
    */} {/*/!**!/*/} {/*
  • */} {/*ETH*/} {/* (MyEtherWallet) */} {/**/} {/*
  • */} {/*/!**!/*/} {/*
  • */} {/*ETH*/} {/* (Etherscan.io) */} {/**/} {/*
  • */} {/*/!**!/*/} {/*
  • */} {/*Ropsten*/} {/* (MyEtherWallet) */} {/**/} {/*
  • */} {/*/!**!/*/} {/*
  • */} {/*Kovan*/} {/* (Etherscan.io) */} {/**/} {/*
  • */} {/*/!**!/*/} {/*
  • */} {/*ETC*/} {/* (Epool.io) */} {/**/} {/*
  • */} {/*/!**!/*/} {/*
  • Add Custom Node
  • */} {/*
*/}
) } }