@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
15 lines (14 loc) • 479 B
TypeScript
import { ReactNode } from 'react';
declare function Tabs({ children, active, onChange, }: {
children: React.ReactNode;
active?: string;
onChange: (value: string) => void;
}): import("@emotion/react/jsx-runtime").JSX.Element;
declare namespace Tabs {
var Tab: ({ children, value, ...props }: {
children: ReactNode;
value: string;
"data-selected"?: boolean;
}) => import("@emotion/react/jsx-runtime").JSX.Element;
}
export default Tabs;