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