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