interface NoChangesModalProps { destination: string folderName: string onCancel: () => void onModify: () => void } export default function NoChangesModal({ destination, folderName, onCancel, onModify, }: NoChangesModalProps) { return (
Le dossier {destination}/{folderName} est identique au contenu distant. Rien a envoyer.