meshtastic/src/components/hardware/Tabs/InfoTab.tsx

14 lines
309 B
TypeScript
Raw Normal View History

2022-04-04 05:02:31 -07:00
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>;
};