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