From 2384c6b224bd5c3d90ceedd18be63ac2e82dfce6 Mon Sep 17 00:00:00 2001 From: Vladimir Metnev Date: Tue, 5 Dec 2017 05:04:25 +0200 Subject: [PATCH] fix(containers): make Dashboard simpler fix(containers): make Dashboard simpler --- .../containers/Dashboard/components/index.jsx | 32 ------------------- src/common/containers/Dashboard/index.jsx | 25 +++++++++++++-- 2 files changed, 23 insertions(+), 34 deletions(-) delete mode 100644 src/common/containers/Dashboard/components/index.jsx diff --git a/src/common/containers/Dashboard/components/index.jsx b/src/common/containers/Dashboard/components/index.jsx deleted file mode 100644 index d1ce7bee..00000000 --- a/src/common/containers/Dashboard/components/index.jsx +++ /dev/null @@ -1,32 +0,0 @@ -// @flow -import React from 'react' -import {Grid, Header} from 'semantic-ui-react' -import {FormattedMessage} from 'react-intl' - -const DashboardComponent = () => { - return ( - - - -
- -
-
- -
-

- -

-
- -
-

- -

-
-
-
- ) -} - -export default DashboardComponent diff --git a/src/common/containers/Dashboard/index.jsx b/src/common/containers/Dashboard/index.jsx index a595e6a4..9ba2eec9 100644 --- a/src/common/containers/Dashboard/index.jsx +++ b/src/common/containers/Dashboard/index.jsx @@ -1,7 +1,8 @@ // @flow import React from 'react' import {Helmet} from 'react-helmet' -import DashboardComponent from './components' +import {Grid, Header} from 'semantic-ui-react' +import {FormattedMessage} from 'react-intl' const Dashboard = () => { return ( @@ -9,7 +10,27 @@ const Dashboard = () => { Suicrux:Dashboard - + + + +
+ +
+
+ +
+

+ +

+
+ +
+

+ +

+
+
+
) }