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/App.jsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 client/src/admin/jsx/App.jsx (limited to 'client/src/admin/jsx/App.jsx') diff --git a/client/src/admin/jsx/App.jsx b/client/src/admin/jsx/App.jsx new file mode 100644 index 0000000..c5be77c --- /dev/null +++ b/client/src/admin/jsx/App.jsx @@ -0,0 +1,36 @@ +import React, { useState, useEffect } from 'react'; +import ReactDOM from 'react-dom'; + +import "../scss/index.scss"; + +import texts from '../../common/data/texts.js'; +import TopBar from '../../common/jsx/TopBar.jsx'; +import Info from '../../common/jsx/Info.jsx'; +import MainScreen from './MainScreen.jsx'; + +const App = () => { + const [adminLang, setAdminLang] = useState('en'); + const [projects, setProjects] = useState([]); + const [info, setInfo] = useState(''); + const [hover, setHover] = useState(''); + const [view, setView] = useState('main'); + const [user, setUser] = useState(null); + const t = (key) => texts[adminLang][key] || texts['en'][key]; + + // useEffect(() => { + // setInfo('no-saved-websites') + // setHover(''); + // }, [user]); + + return ( +
+ +
+ { view === 'main' && } +
+ +
+ ) +}; + +ReactDOM.render(, document.getElementById('app')); -- cgit v1.2.3