@grafana/ui
Version:
Grafana Components Library
15 lines (12 loc) • 393 B
JavaScript
import { useFieldArray } from 'react-hook-form';
;
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