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
2 files
+ 30
14
Compare changes
  • Side-by-side
  • Inline
Files
2
 
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