ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
16 lines • 697 B
JavaScript
import { useContext } from 'react';
import { SimpleFormIteratorItemContext } from "./SimpleFormIteratorItemContext.js";
/**
* A hook that provides access to a SimpleFormIterator item meta (its index and the total number of items) and mutators (reorder and remove this remove).
* Useful to create custom array input iterators.
* @see {SimpleFormIterator}
* @see {ArrayInput}
*/
export var useSimpleFormIteratorItem = function () {
var context = useContext(SimpleFormIteratorItemContext);
if (!context) {
throw new Error('useSimpleFormIteratorItem must be used inside a SimpleFormIteratorItem');
}
return context;
};
//# sourceMappingURL=useSimpleFormIteratorItem.js.map