Update various components

This commit is contained in:
2026-02-26 21:03:21 -05:00
parent 637b3a0c34
commit 94f0f3ca13
20 changed files with 84 additions and 112 deletions

View File

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