Files
MattrixwvReactComponents/lib/component/tab/MattrixwvTabList.tsx

14 lines
324 B
TypeScript

import type { MattrixwvTabListProps } from "$/types/TabTypes";
import { TabList } from "@headlessui/react";
export default function MattrixwvTabList({
children
}: Readonly<MattrixwvTabListProps>){
return (
<TabList className="flex flex-row items-center justify-start w-full border-b">
{children}
</TabList>
);
}