blob: 28aee3b7225e764915f443853b33c4bf060d13dc [file] [log] [blame]
Michelle Sepkap Sime6967fb92022-11-08 08:39:36 -05001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18import { Button } from '@mui/material';
19import { useTranslation } from 'react-i18next';
20import { Navigate, useNavigate } from 'react-router-dom';
21
22import LoadingPage from '../components/Loading';
23
24export default function Setup() {
25 const { t } = useTranslation();
26 const navigate = useNavigate();
27
28 const accessToken = localStorage.getItem('adminAccessToken');
29
30 const adminLogout = () => {
31 localStorage.removeItem('adminAccessToken');
32 navigate('/login');
33 };
34
35 if (!accessToken) {
36 return <Navigate to="/login" replace />;
37 }
38 return (
39 <>
40 <Button variant="contained" type="submit" onClick={adminLogout}>
41 {t('logout')}
42 </Button>
43 <LoadingPage />
44 </>
45 );
46}