import { CpuChipIcon, ServerIcon } from '@heroicons/react/24/outline'; import { Header } from './Header'; import { InfoRow } from './Info'; import type { HostInfo } from '@/utils/types'; export const LocalNetworkView = ({ data }: { data: HostInfo }) => { return (
); };