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

19 lines
372 B
TypeScript

import type { MattrixwvTabPanelsProps } from "$/types/TabTypes";
import { TabPanels } from "@headlessui/react";
export default function MattrixwvTabPanels(props: MattrixwvTabPanelsProps){
const {
children
} = props;
return (
<TabPanels
className="flex flex-row items-start justify-center w-full h-full overflow-scroll"
>
{children}
</TabPanels>
);
}