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
+ 90
12
Compare changes
  • Side-by-side
  • Inline
Files
5
 
import React from "react";
 
 
 
export default function BatchParametersComponent(props) {
 
 
const { param, setParam, label } = props;
 
 
return (
 
<div>
 
<label>{label}</label>
 
<input value={param} onChange={evt => setParam(evt.target.value)} />
 
</div>
 
);
 
 
}
Loading