diff options
author | 2020-11-27 00:38:22 +0100 | |
---|---|---|
committer | 2020-11-27 00:38:22 +0100 | |
commit | 5bc2917e78c133cd8966a65aa200588eb6d7c0d6 (patch) | |
tree | 1ab1f1837932b45092a7207af99c3a6cefed5e73 /client/src/login/jsx/LoginPanel.jsx | |
parent | f2fcc41cb17ece1fc5acf57809c5e3d61c236133 (diff) | |
download | website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.tar.gz website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.tar.bz2 website_creator-5bc2917e78c133cd8966a65aa200588eb6d7c0d6.zip |
save language in login & admin apps
Diffstat (limited to 'client/src/login/jsx/LoginPanel.jsx')
-rw-r--r-- | client/src/login/jsx/LoginPanel.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/login/jsx/LoginPanel.jsx b/client/src/login/jsx/LoginPanel.jsx index 96b118f..c84e843 100644 --- a/client/src/login/jsx/LoginPanel.jsx +++ b/client/src/login/jsx/LoginPanel.jsx @@ -2,7 +2,7 @@ import React, {useState, useEffect, useContext} from 'react'; import login from '../api/login'; import { t } from '../../admin/hocs'; -const LoginPanel = ({setUser}) => { +const LoginPanel = () => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const [active, setActive] = useState(false); |