import { Link, useParams } from 'react-router'; import { Icon } from '../components/Icon'; import { InspectionVisitEditorF4Page } from './InspectionVisitEditorF4Page'; /** * F6.1 keeps Preparación para campo as a stage of the Inspection. The existing * detail remains unchanged underneath; this wrapper makes the relationship * explicit without creating a second operational module. */ export function InspectionVisitDetailF61Page() { const { id } = useParams<{ id: string }>(); return <> {id &&
ETAPA PREVIA AL CAMPO Preparación para campo

Revisá antecedentes, hallazgos pendientes y próximos controles de esta Inspección antes de iniciarla desde la APK.

Abrir preparación
} ; }