pitch-invader
Version:
React library designed to simplify the process of creating and managing a football (soccer) starting lineup.
12 lines (10 loc) • 338 B
TypeScript
import { Player } from '../types';
interface PlayerCardProps {
player: Player;
id: number;
onClickFunc: () => void;
showPosition?: boolean;
lang: string | null;
}
export default function PlayerCard({ player, id, onClickFunc, showPosition, lang }: PlayerCardProps): import("react/jsx-runtime").JSX.Element;
export {};