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

25 lines
528 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({ text }) {
return (
<div>
<Button
icon={<IconUser />}
type="danger"
theme="solid"
onClick={async () => {
await xhrPost('/api/login/logout');
location.reload();
}}
>
{text && 'Logout'}
</Button>
</div>
);
};
export default Logout;