import React from 'react'; import { Trans, withTranslation } from 'react-i18next'; import flow from 'lodash/flow'; import Guide from '../../components/ui/Guide'; import Controls from './Controls'; import AddressList from './AddressList'; import { DhcpInterface } from '../../initialState'; interface DevicesProps { interfaces: DhcpInterface[]; dnsIp: string; dnsPort: number; } const Devices = ({ interfaces, dnsIp, dnsPort }: DevicesProps) => (