课程视频播放

This commit is contained in:
禺狨
2023-03-24 18:42:18 +08:00
parent bafdbc3347
commit 8eb517fa86
74 changed files with 237 additions and 8 deletions

View File

@@ -93,12 +93,14 @@ export const Header: React.FC = () => {
<Dropdown menu={{ items, onClick }} placement="bottomRight">
<div className="d-flex">
{user && user.name && (
<img
style={{ width: 36, height: 36, borderRadius: "50%" }}
src={user.avatar}
/>
<>
<img
style={{ width: 36, height: 36, borderRadius: "50%" }}
src={user.avatar}
/>
<span className="ml-8 c-admin">{user.name}</span>
</>
)}
<span className="ml-8 c-admin">{user.name}</span>
</div>
</Dropdown>
</Button.Group>