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

19 lines
345 B
TypeScript

import type { MattrixwvTabPanelProps } from "$/types/Tab";
import { TabPanel } from "@headlessui/react";
export default function MattrixwvTabPanel(props: MattrixwvTabPanelProps){
const {
children
} = props;
return (
<TabPanel
className="flex flex-row items-start justify-center w-full h-full"
>
{children}
</TabPanel>
);
}