From 0e97e37b93f22f39e5520c8d2292507f11a1b07a Mon Sep 17 00:00:00 2001 From: Vladimir Metnev Date: Tue, 5 Dec 2017 05:04:38 +0200 Subject: [PATCH] fix(containers): remove LinksComponent fix(containers): remove LinksComponent --- .../containers/Links/components/index.jsx | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/common/containers/Links/components/index.jsx diff --git a/src/common/containers/Links/components/index.jsx b/src/common/containers/Links/components/index.jsx deleted file mode 100644 index 8938a56c..00000000 --- a/src/common/containers/Links/components/index.jsx +++ /dev/null @@ -1,26 +0,0 @@ -// @flow -import React from 'react' -import {Grid, List} from 'semantic-ui-react' -import _ from 'lodash' -import LinksItemComponent from './LinksItemComponent' -import type {LinkItem} from 'types' - -type Props = { - links: Object -} - -const LinksComponent = ({links}: Props) => { - return ( - - - - {_.map(links, (link: LinkItem, i) => { - return - })} - - - - ) -} - -export default LinksComponent