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) 301 B
import { SliderSingleProps } from 'antd/es/slider'; export interface SliderTogetherProps extends Omit<SliderSingleProps, 'onChange'> { rtKey: string; } export default function SliderTogether({ rtKey, value, defaultValue, ...props }: SliderTogetherProps): import("react/jsx-runtime").JSX.Element;