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