import React from 'react'; import { Button } from '@/components/ui/index'; import { RefreshCw } from 'lucide-react'; import { FirewallRuleList } from '@/components/Proxmox'; export function ProxmoxFirewallPage() { const rules = [ { id: '1', rule: 100, action: 'ACCEPT', protocol: 'tcp', source: '192.168.1.0/24', destination: 'any', port: '22', status: 'enabled' }, { id: '2', rule: 200, action: 'ACCEPT', protocol: 'tcp', source: 'any', destination: 'any', port: '80,443', status: 'enabled' }, { id: '3', rule: 999, action: 'DROP', protocol: 'any', source: 'any', destination: 'any', status: 'enabled' }, ]; return (

Firewall

Configure firewall rules

{}} />
); }