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 Content 1; };