mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
19 lines
367 B
TypeScript
19 lines
367 B
TypeScript
import type { MattrixwvTabPanelsProps } from "$/types/Tab";
|
|
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>
|
|
);
|
|
}
|