mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
14 lines
309 B
TypeScript
14 lines
309 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import { Tab } from '@headlessui/react';
|
||
|
|
||
|
import type { IDevice } from '../../../data/device';
|
||
|
|
||
|
export interface InfoTabProps {
|
||
|
device: IDevice;
|
||
|
}
|
||
|
|
||
|
export const InfoTab = ({ device }: InfoTabProps): JSX.Element => {
|
||
|
return <Tab.Panel className="h-32">Content 1</Tab.Panel>;
|
||
|
};
|