react-together-ant-design
Version:
A set of ready-to-use Ant Design components that are synchronized across multiple users in real-time!
11 lines (9 loc) • 359 B
TypeScript
import { RadioProps } from 'antd';
export interface SelectButtonTogetherProps extends Omit<RadioProps, 'value' | 'onChange'> {
rtKey: string;
items: {
label: string;
value: string;
}[];
}
export default function SelectButtonTogether({ rtKey, items, ...props }: SelectButtonTogetherProps): import("react/jsx-runtime").JSX.Element;