@gpa-gemstone/react-forms
Version:
React Form modules for gpa webapps
14 lines (13 loc) • 409 B
TypeScript
import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> {
/**
* Array of checkboxes with their IDs and labels
* @type {{ ID: string; Label: string }[]}
*/
Checkboxes: {
ID: string;
Label: string;
}[];
}
export default function ArrayCheckBoxes<T>(props: IProps<T>): JSX.Element;
export {};