import type { MattrixwvTabProps } from "$/types/Tab"; import { Tab } from "@headlessui/react"; import clsx from "clsx"; export default function MattrixwvTab(props: MattrixwvTabProps){ const { children } = props; return ( {children} ); }