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) 350 B
import { SelectButtonProps } from 'primereact/selectbutton'; export interface SelectButtonTogetherProps extends Omit<SelectButtonProps, 'value' | 'onChange'> { rtKey: string; className?: string; } export default function SelectButtonTogether({ rtKey, options, ...props }: SelectButtonTogetherProps): import("react/jsx-runtime").JSX.Element;