UNPKG

react-together-ant-design

Version:

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

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