import { DownOutlined } from '@ant-design/icons'; import type { MenuProps } from 'antd'; import { Dropdown, Space } from 'antd'; import { UserOutlined } from '@ant-design/icons' import { Link } from 'react-router-dom'; const items: MenuProps['items'] = [ { label: 退出登录, key: 'logout', }, ]; const UserInfoDropdown = () => { return (
Admin
) } export default UserInfoDropdown