Files
fredy/ui/src/components/logout/Logout.jsx

22 lines
464 B
React
Raw Normal View History

import React from 'react';
2023-03-20 08:52:13 +01:00
import { Button } from '@douyinfe/semi-ui';
import { xhrPost } from '../../services/xhr';
2023-03-20 08:52:13 +01:00
import { IconUser } from '@douyinfe/semi-icons';
const Logout = function Logout() {
return (
<Button
2023-03-20 08:52:13 +01:00
icon={<IconUser />}
type="danger"
theme="solid"
onClick={async () => {
await xhrPost('/api/login/logout');
location.reload();
}}
2023-03-20 08:52:13 +01:00
>
Logout
</Button>
);
};
export default Logout;