@feelback/react
Version:
Use Feelback service within your React website
12 lines (11 loc) • 471 B
TypeScript
import type { TargetContent } from "@feelback/js";
import type { FeelbackValueDefinition } from "../types";
export type FeelbackReactionProps = Readonly<TargetContent & {
layout?: "list" | "picker";
preset?: readonly FeelbackValueDefinition[];
revokable?: boolean;
showCount?: boolean;
textQuestion?: string;
textAnswer?: string;
}>;
export declare function FeelbackReaction(props: FeelbackReactionProps): import("react/jsx-runtime").JSX.Element;