File size: 617 Bytes
598945f 68ed806 598945f 68ed806 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import { useFetchUserInfo } from '@/hooks/user-setting-hooks';
import { Avatar } from 'antd';
import React from 'react';
import { history } from 'umi';
import styles from '../../index.less';
const App: React.FC = () => {
const { data: userInfo } = useFetchUserInfo();
const toSetting = () => {
history.push('/user-setting');
};
return (
<Avatar
size={32}
onClick={toSetting}
className={styles.clickAvailable}
src={
userInfo.avatar ??
'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png'
}
/>
);
};
export default App;
|