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
3 files
+ 63
21
Compare changes
  • Side-by-side
  • Inline
Files
3
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