import Modal, { ModalActions } from '@/components/ui/Modal' import { CheckIcon } from '@/components/ui/icons' interface NoChangesModalProps { folderName: string onCancel: () => void onModify: () => void } export default function NoChangesModal({ folderName, onCancel, onModify, }: NoChangesModalProps) { return (

Aucun changement detecte

Le dossier public/models/{folderName} est identique au contenu distant. Rien a envoyer.

) }