From e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d Mon Sep 17 00:00:00 2001 From: Piotr Russ Date: Mon, 16 Nov 2020 00:10:28 +0100 Subject: api, login, auth --- client/src/admin/jsx/MainScreen.jsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 client/src/admin/jsx/MainScreen.jsx (limited to 'client/src/admin/jsx/MainScreen.jsx') diff --git a/client/src/admin/jsx/MainScreen.jsx b/client/src/admin/jsx/MainScreen.jsx new file mode 100644 index 0000000..ff28256 --- /dev/null +++ b/client/src/admin/jsx/MainScreen.jsx @@ -0,0 +1,25 @@ +import React, { Fragment } from 'react'; +import WithHover from '../../common/jsx/WithHover.jsx'; + +const MainScreen = ({ projects, t, setHover }) => ( +
+

{ t('main-title') }

+
+ { !projects.length && ( + +

{ t('edit-current-project') }

+
+ )} + { !projects.length && ( + +

{ t('show-saved-projects') }

+
+ )} + +

{ t('create-new-project') }

+
+
+
+); + +export default MainScreen; -- cgit v1.2.3