import type React from 'react'; import { FiAlignLeft, FiBell, FiFastForward, FiFileText, FiRss, } from 'react-icons/fi'; import { PageLayout } from '@components/templates/PageLayout'; import { ExternalNotification } from './ExternalNotification'; import { Files } from './Files'; import { RangeTest } from './RangeTest'; import { Serial } from './Serial'; import { StoreAndForward } from './StoreAndForward'; export const Plugins = (): JSX.Element => { return ( , }, { title: 'File Browser', description: 'HTTP only file browser', icon: , }, { title: 'External Notification', description: 'External hardware alerts', icon: , }, { title: 'Serial', description: 'Send serial data over the mesh', icon: , }, { title: 'Store & Forward', description: 'Retrive message history', icon: , }, ]} panels={[ , , , , , ]} /> ); };