import React from 'react'; import { Card, CardHeader, CardContent } from '@/components/ui/Card'; import BackButton from '@/components/ui/BackButton'; // On pourrait extraire ces données dans un Custom Hook plus tard const BACKUP_HISTORY = [ { date: 'Aujourd\'hui, 03:00 AM', node: 'Cluster Proxmox (Compta)', type: 'Incrémentielle', size: '12 GB' }, { date: 'Hier, 03:00 AM', node: 'Cluster Proxmox (Compta)', type: 'Incrémentielle', size: '8.4 GB' }, { date: 'Dimanche, 01:00 AM', node: 'Cluster Proxmox (Compta)', type: 'Totale (Full)', size: '240 GB' }, { date: 'Samedi, 03:00 AM', node: 'Cluster Proxmox (Compta)', type: 'Incrémentielle', size: '4.1 GB' }, ]; export const Backups: React.FC = () => { return (
Journal d'exécution de la règle 3-2-1-1-0
| Date d'exécution | Cible (Nœud) | Type | Volume | Statut |
|---|---|---|---|---|
| {bkp.date} | {bkp.node} | {bkp.type} | {bkp.size} | Succès (Chiffré) |