mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Most simple components created
This commit is contained in:
18
lib/component/tab/MattrixwvTabPanels.tsx
Normal file
18
lib/component/tab/MattrixwvTabPanels.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user