WIP for manual job creation

This commit is contained in:
Patrick Fic
2020-03-18 21:50:04 -07:00
parent d7afe7e43f
commit 7889ee61ae
6 changed files with 170 additions and 13 deletions

View File

@@ -7,11 +7,11 @@ export default function JobsCreateContainer() {
const contextState = useState({
vehicle: { new: false, search: "", selectedid: null },
owner: { new: false },
owner: { new: false, search: "", selectedid: null },
job: null
});
const [state, setState] = contextState;
const [state] = contextState;
const handleFinish = values => {
console.log("Form Values", values);