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) 294 B
import { RatingProps } from 'primereact/rating'; export interface RatingTogetherProps extends Omit<RatingProps, 'value' | 'onChange' | 'readOnly'> { rtKey: string; } export default function RatingTogether({ rtKey, ...props }: RatingTogetherProps): import("react/jsx-runtime").JSX.Element;