diff --git a/web-v2/src/pages/InspectionVisitDetailF61Page.tsx b/web-v2/src/pages/InspectionVisitDetailF61Page.tsx new file mode 100644 index 0000000..0b5e403 --- /dev/null +++ b/web-v2/src/pages/InspectionVisitDetailF61Page.tsx @@ -0,0 +1,28 @@ +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 + +
+
} + + ; +}