sticky-horse
Version:
With StickyHorse allow your users to send feedback to your team.
17 lines (16 loc) • 345 B
TypeScript
import React from 'react';
interface Comment {
id: string;
fromUserId: string;
comment: string;
position: {
x: number;
y: number;
};
}
interface CommentDisplayProps {
comments: Comment[];
onRemove: (id: string) => void;
}
export declare const CommentDisplay: React.FC<CommentDisplayProps>;
export {};