import type React from 'react'; import { FiBluetooth, FiCpu, FiWifi } from 'react-icons/fi'; import { useAppDispatch, useAppSelector } from '@app/hooks/redux'; import { Button } from '@components/generic/Button'; import { connType, openConnectionModal } from '@core/slices/appSlice'; 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); const ready = useAppSelector((state) => state.meshtastic.ready); return ( ); };