import React from 'react';
import { TicketDependenciesPanel } from '@/features/tickets/components/TicketDependenciesPanel';

interface Props {
  ticketId: string;
  readOnly?: boolean;
}

export const TicketDependenciesSection: React.FC<Props> = ({ ticketId, readOnly }) => (
  <TicketDependenciesPanel ticketId={ticketId} readOnly={readOnly} />
);
