I am new in React and I have a problem with changing states in Arrays States using Hooks. I have an Array State as u can see below. How I can change only one cell in my state using ,,setFootballersList" without having to write all of the cells"?
const [footballersList, setFootballersList] = useState([["1",true], ["2",true], ["3",true]]);
Thanks for the answers.