Skip to content
Snippets Groups Projects

130 inc batch async

Merged Gareth Hughes requested to merge 130_IncBatchAsync into master
Compare and
6 files
+ 241
12
Compare changes
  • Side-by-side
  • Inline
Files
6
import React from "react";
const handleFocus = (event) => event.target.select();
export default function BatchParametersAdd(props) {
const { param, setParam, label } = props;
return (
<div>
{'key: }'}{label}{', value: '}{param}
</div>
);
}
Loading