From 9cff1868d24aafa8ef888907670bf6a6ae088ec4 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Fri, 17 Aug 2018 12:35:12 +0200 Subject: [PATCH] Added wrapper --- .../LeftNavigation/components/CoinMenu/index.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 => ( ))} - + ); } }