import { Flex, Text, Select, Card } from "@mantine/core"; interface Team { id: string; name: string; } interface SeedListProps { teams: Team[]; onSeedChange: (currentIndex: number, newIndex: number) => void; } export function SeedList({ teams, onSeedChange }: SeedListProps) { const seedOptions = teams.map((_, index) => ({ value: index.toString(), label: `Seed ${index + 1}`, })); return ( {teams.map((team, index) => (