+ {(provided) => {
+ return (
+
+ {
+ const newTransformations = transformations.slice();
+ newTransformations[index] = transformation;
+ model.changeTransformations(newTransformations);
+ }}
+ onRemove={(index) => {
+ const newTransformations = transformations.slice();
+ newTransformations.splice(index);
+ model.changeTransformations(newTransformations);
+ }}
+ configs={transformationEditorRows}
+ data={data}
+ >
+ {provided.placeholder}
+
+ );
+ }}
+
+