react-together-ant-design
Version:
A set of ready-to-use Ant Design components that are synchronized across multiple users in real-time!
8 lines (6 loc) • 304 B
TypeScript
import { CheckboxProps } from 'antd';
export interface CheckboxTogetherProps extends Omit<CheckboxProps, 'checked' | 'onChange'> {
rtKey: string;
className?: string;
}
export default function CheckboxTogether({ rtKey, ...props }: CheckboxTogetherProps): import("react/jsx-runtime").JSX.Element;