import React, { useState } from 'react'; import { Card } from '../ui/card'; import { Button } from '../ui/button'; import { ProgressBar } from '../ui/progress'; import { HardDrive, Trash2, Clock, MapPin, AlertCircle } from 'lucide-react'; import { useToast } from '../../context/ToastContext'; export const CloudSettingsView: React.FC = () => { const { addToast } = useToast(); const [retention, setRetention] = useState('30'); const [region, setRegion] = useState('us-east-1'); return (
Deleted files are permanently removed after this period.