pitch-invader
Version:
React library designed to simplify the process of creating and managing a football (soccer) starting lineup.
9 lines (7 loc) • 320 B
TypeScript
import { HandleFormationChange } from './Pitch/types';
interface CustomSelectProps {
formationsData: string[];
handleFormationChange: HandleFormationChange;
}
export default function CustomSelect({ formationsData, handleFormationChange }: CustomSelectProps): import("react/jsx-runtime").JSX.Element;
export {};