UNPKG

@grafana/ui

Version:
15 lines (12 loc) 393 B
import { useFieldArray } from 'react-hook-form'; "use strict"; const FieldArray = ({ name, control, children, ...rest }) => { const { fields, append, prepend, remove, swap, move, insert } = useFieldArray({ control, name, ...rest }); return children({ fields, append, prepend, remove, swap, move, insert }); }; export { FieldArray }; //# sourceMappingURL=FieldArray.mjs.map