import clsx from "clsx"; import type { CSSProperties, PropsWithChildren } from "react"; import { registerComponent } from "../../registries/components.js"; import { TabsProvider } from "./context/TabControl.js"; export interface TabsProps extends Record { style?: CSSProperties; className?: string; selected?: number; } export function Tabs({ style, selected, children, className }: PropsWithChildren) { return (
{children}
); } registerComponent("Tabs", Tabs);