Files
Desktop/ts/components/Tabs.dom.tsx
T
2026-03-30 11:54:59 -07:00

25 lines
634 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactNode } from 'react';
import React from 'react';
import type { TabsOptionsType } from '../hooks/useTabs.dom.tsx';
import { useTabs } from '../hooks/useTabs.dom.tsx';
type PropsType = {
children: (renderProps: { selectedTab: string }) => ReactNode;
} & TabsOptionsType;
export function Tabs(props: PropsType): React.JSX.Element {
const { children, ...options } = props;
const { selectedTab, tabsHeaderElement } = useTabs(options);
return (
<>
{tabsHeaderElement}
{children({ selectedTab })}
</>
);
}