pitch-invader
Version:
React library designed to simplify the process of creating and managing a football (soccer) starting lineup.
12 lines (10 loc) • 393 B
TypeScript
import { Player } from '../types/index.js';
interface AppProps {
players: Player[];
defaultJerseyColor: string;
defaultJerseyTextColor: string;
formationTextColor: string;
lang: string | null;
}
declare function App({ players, defaultJerseyColor, defaultJerseyTextColor, formationTextColor, lang, }: AppProps): import("react/jsx-runtime").JSX.Element;
export default App;