UNPKG

react-together-primereact

Version:

A set of ready-to-use PrimeReact components that are synchronized across multiple users in real-time!

8 lines (6 loc) 324 B
import { TabViewProps } from 'primereact/tabview'; export interface TabViewTogetherrops extends Omit<TabViewProps, 'activeIndex' | 'onTabChange'> { rtKey: string; headerClassName?: string; } export default function TabViewTogether({ rtKey, ...props }: TabViewTogetherrops): import("react/jsx-runtime").JSX.Element;