import React from 'react'; import { DeviceMobileIcon, StatusOfflineIcon, StatusOnlineIcon, } from '@heroicons/react/outline'; import { Types } from '@meshtastic/meshtasticjs'; import { useAppSelector } from '../hooks/redux'; import { Logo } from './Logo'; export const Header = (): JSX.Element => { const deviceStatus = useAppSelector((state) => state.meshtastic.deviceStatus); const ready = useAppSelector((state) => state.meshtastic.ready); const lastMeshInterraction = useAppSelector( (state) => state.meshtastic.lastMeshInterraction, ); return ( ); };