AI
Size: a a a
AI
AR
const toggleShow = index => setShow(show.slice(0, index).concat(!show[index], show.slice(index + 1));
А
А
const toggleShow = index => setShow(show.slice(0, index).concat(!show[index], show.slice(index + 1));
И
А
AR
А
И
MK
А
А
const newShow = show.slice();
newShow[index] = true;
setShow(newShow);
DD
value
у меня на экране отображается jokes и мне нужно чтобы я мог нажать на кнопку like и он отметился как like.undefined
AR
setShow(show.map((item, i) => i === index ? !item : item));
DD
const newShow = show.slice();
newShow[index] = true;
setShow(newShow);
V
DD
V
V
ЮП