interface AvatarProps { name: string; } export function Avatar({ name }: AvatarProps) { return (
{name.charAt(0).toUpperCase()}
); }