'use client' import { useState } from 'react' interface NetworkConfigurationProps { systemInfo: any configData: any onComplete: (data: any) => void onBack?: () => void isCompleted: boolean } export default function NetworkConfiguration({ systemInfo, configData, onComplete, onBack, isCompleted }: NetworkConfigurationProps) { const [config, setConfig] = useState({ subnet: '192.168.1.0/24', primaryInterface: 'eth0', bzzzPort: 8080, mcpPort: 3000, webUIPort: 8080, autoFirewall: true }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() onComplete({ network: config }) } return (
) }