みかづきブログ・カスタム

基本的にはちょちょいのほいです。

2022-02-02から1日間の記事一覧

ReactのuseStateで管理されている配列内のオブジェクトを更新する 🍛

文章での表現がすごく難しいのですが、 const [list, setList] = useState([{ color: 'red', text: 'Ya-Ha-!' },{ color: 'blue', text: 'Yo-Ho-!' },{ color: 'yellow', text: 'Ya-Ha-!' },{ color: 'green', text: 'Yo-Ho-!' }]); と、いう感じでuseState…