MCPcopy Create free account
hub / github.com/code100x/chess / UserAvatarProps

Interface UserAvatarProps

apps/frontend/src/components/UserAvatar.tsx:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { Metadata, Player } from '../screens/Game';
3
4interface UserAvatarProps {
5 gameMetadata: Metadata | null;
6 self?: boolean;
7}
8
9export const UserAvatar = ({ gameMetadata, self }: UserAvatarProps) => {
10 const user = useUser();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected