UNPKG

react-brackets-lbe

Version:

React component to render dynamic bracket UI

21 lines (20 loc) 483 B
import { IRoundProps } from './Rounds'; export declare type ISeedProps = { id: number | string; teams: Array<{ name?: string; image?: string; status?: string; [key: string]: any; }>; date?: string; mobileBreakpoint?: number; [key: string]: any; }; export interface IRenderSeedProps { seed: ISeedProps; breakpoint: number; roundIndex: number; seedIndex: number; rounds?: IRoundProps[]; }