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
+ 89
10
Compare changes
  • Side-by-side
  • Inline
Files
5
import React, { useState, useEffect, useContext } from "react";
import { useLocation } from 'react-router-dom';
import axios from "axios";
import { Button, Form, Container } from "react-bootstrap";
//import { BATCHContext } from "../../../contexts/BATCHContext";
//import { GlobalContext } from "../../../../contexts/GlobalContext";
//import LoadingSpinner from "../../LoadingSpinner";
export default function BatchParametersComponent(props) {
const {param, setParam, label} = props;
//const {param, setParam, label} = useState();
//const {parameter, setParameter, label};
return (
<>
<input value={param} onChange={evt => setParam(evt.target.value)}/>
</>
);
}
Loading