/** * ConseilNclcCallout — Sprint 3.6b. * * Section "Plan d'action NCLC" : écart au NCLC cible + action prioritaire. * Visible pour tous les plans. * * Règle L : tokens Direction H exclusivement. */ import ReactMarkdown from 'react-markdown' import { Card } from '@/shared/ui/Card' import type { ConseilNclc } from '@/entities/report/types' interface Props { conseil: ConseilNclc } export function ConseilNclcCallout({ conseil }: Props) { return (

Plan d'action NCLC

Objectif

{conseil.nclc_cible}

Écart

{conseil.ecart}

Action prioritaire

{conseil.action_prioritaire}
) }