import type React from 'react'; import { FiBluetooth, FiCpu, FiWifi } from 'react-icons/fi'; import { connType, openConnectionModal } from '@core/slices/appSlice'; import { useAppDispatch } from '@hooks/useAppDispatch'; import { useAppSelector } from '@hooks/useAppSelector'; import { Button } from '@meshtastic/components'; import { Types } from '@meshtastic/meshtasticjs'; export const DeviceStatus = (): JSX.Element => { const dispatch = useAppDispatch(); const appState = useAppSelector((state) => state.app); const state = useAppSelector((state) => state.meshtastic); return ( ); };