import React from 'react'; import { useTranslation } from 'react-i18next'; import { AdjustmentsIcon } from '@heroicons/react/outline'; import { Dropdown } from '../../basic/Dropdown'; import { Settings } from './Settings'; export const Device = (): JSX.Element => { const { t } = useTranslation(); return ( } title={t('settings.device')} content={} fallbackMessage={'Loading...'} /> ); };