diff --git a/src/js/views/Wallet/components/LeftNavigation/components/CoinMenu/index.js b/src/js/views/Wallet/components/LeftNavigation/components/CoinMenu/index.js index f3a48ce1..207ecb52 100644 --- a/src/js/views/Wallet/components/LeftNavigation/components/CoinMenu/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/components/CoinMenu/index.js @@ -1,4 +1,4 @@ -/* @flow */ +import styled from 'styled-components'; import coins from 'constants/coins'; import colors from 'config/colors'; import ICONS from 'config/icons'; @@ -8,6 +8,8 @@ import { NavLink } from 'react-router-dom'; import Divider from '../Divider'; import RowCoin from '../RowCoin'; +const Wrapper = styled.div``; + class CoinMenu extends Component { getBaseUrl() { const { selectedDevice } = this.props.wallet; @@ -35,7 +37,7 @@ class CoinMenu extends Component { render() { const { config } = this.props.localStorage; return ( - + {config.coins.map(item => ( ))} - + ); } }