feat: add accounts table

This commit is contained in:
2025-06-24 13:00:40 +05:00
parent 71ab39a03c
commit a3ee18f6fd
5 changed files with 130 additions and 8 deletions

View File

@@ -1,3 +1,4 @@
import { useUserSelector } from '@/store/userStore';
import { Avatar } from 'antd';
import Title from 'antd/es/typography/Title';
@@ -7,6 +8,7 @@ interface HeaderProps {
}
export default function Header({ title, additionalContent }: HeaderProps) {
const user = useUserSelector();
return (
<div
style={{
@@ -46,7 +48,7 @@ export default function Header({ title, additionalContent }: HeaderProps) {
>
<Avatar
size={25.77}
src={`https://cdn-icons-png.flaticon.com/512/219/219986.png`}
src={`https://gamma.heado.ru/go/ava?name=${user?.login}`}
/>
</div>
</div>