You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
769 B
29 lines
769 B
import type React from 'react';
|
|
|
|
import { FiFileText, FiRss } from 'react-icons/fi';
|
|
|
|
import { PageLayout } from '@components/templates/PageLayout';
|
|
|
|
import { Files } from './Files';
|
|
import { RangeTest } from './RangeTest';
|
|
|
|
export const Plugins = (): JSX.Element => {
|
|
return (
|
|
<PageLayout
|
|
title="Plugins"
|
|
sidebarItems={[
|
|
{
|
|
title: 'Range Test',
|
|
description: 'Test the range of your Meshtastic node',
|
|
icon: <FiRss className="flex-shrink-0 w-6 h-6" />,
|
|
},
|
|
{
|
|
title: 'File Browser',
|
|
description: 'HTTP only file browser',
|
|
icon: <FiFileText className="flex-shrink-0 w-6 h-6" />,
|
|
},
|
|
]}
|
|
panels={[<RangeTest key={1} />, <Files key={2} />]}
|
|
/>
|
|
);
|
|
};
|
|
|