UNPKG

react-together-primereact

Version:

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

7 lines (5 loc) 311 B
import { MultiSelectProps } from 'primereact/multiselect'; export interface MultiSelectTogetherProps extends Omit<MultiSelectProps, 'value' | 'onChange'> { rtKey: string; } export default function MultiSelectTogether({ rtKey, ...props }: MultiSelectTogetherProps): import("react/jsx-runtime").JSX.Element;