I am relatively new to react and javascript so my question is:
How in gods name do I access these two objects directly?
I tried using Object.keys without any success.
const [inputList, setInputList] = useState([{action: "", dest: "", }]);
const isEnabled = //how do I check if both action and dest length is > 0???
<Button disabled={!isEnabled}>Continue</Button>