@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 328 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
id?: string | number;
className?: string;
style?: CSSProperties;
bannedWords?: string[];
value?: string;
onChange?: (v: string) => void;
};
declare const Answering: ({ id }: Props) => React.JSX.Element;
export { Answering };