const [list, setList] = useState([]) const changeStatus = id => { setList(old => old.map(o => o.id === id ? {...o, title: "#тес2" : o})) }