import React from 'react'; import { FiWifi, FiWifiOff } from 'react-icons/fi'; import { useAppSelector } from '@app/hooks/redux'; import { Button } from '@components/generic/Button'; import { Types } from '@meshtastic/meshtasticjs'; export const DeviceStatusDropdown = (): JSX.Element => { const deviceStatus = useAppSelector((state) => state.meshtastic.deviceStatus); const ready = useAppSelector((state) => state.meshtastic.ready); return (