Skip to content
Snippets Groups Projects

130 inc batch async

Merged Gareth Hughes requested to merge 130_IncBatchAsync into master
Compare and Show latest version
5 files
+ 217
4
Compare changes
  • Side-by-side
  • Inline
Files
5
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