UNPKG

flex-element-tabs

Version:

flex-element-tabs is a versatile JavaScript library for creating dynamic tabs in web interfaces. It offers customizable, lightweight, and easy-to-integrate tab components, enhancing user navigation and content organization in web applications.

8 lines (7 loc) 202 B
import React from "react"; type Props = { children?: any; title?: string; }; declare const TabsItem: ({ children: children, title: title }: Props) => React.JSX.Element; export default TabsItem;