UNPKG

react-forminate

Version:

React.js + Typescript package that creates dynamic UI forms based on the JSON schema

9 lines (8 loc) 350 B
import { CheckboxFieldType } from '../../../types'; import { default as React } from 'react'; /** * CheckboxField component - Renders either a single checkbox or a group of checkboxes * with optimized performance through memoization and reduced re-renders */ declare const CheckboxField: React.FC<CheckboxFieldType>; export default CheckboxField;