interface GeneratingAnimationProps { branchContext?: { current: number; total: number } } export function GeneratingAnimation({ branchContext }: GeneratingAnimationProps) { return (
Branch {branchContext.current} of {branchContext.total}
Generating branch detail...
> ) : (Generating...
)}