adding a bunch of linting and starting project over with nothing

This commit is contained in:
talksik
2022-05-12 17:01:27 -05:00
parent f7646c4350
commit 3b1df3173c
34 changed files with 31766 additions and 1058 deletions
@@ -0,0 +1,15 @@
import { Avatar, Badge } from "antd";
import { UserOutlined } from "@ant-design/icons";
const AvatarWithBadge = ({ src }: { src: string }) => (
<>
<span>
<Badge dot>
<Avatar shape="square" src={src} />
</Badge>
</span>
</>
);
export default AvatarWithBadge;