HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 웹 데브코스 1기
프로그래머스 웹 데브코스 1기
/
📌
프롱이 전용 페이지
/
🤫
과제 PR 하고 살펴보는 전용 wiki
/
🐈‍⬛
[7주차] 고양이 사진첩
🐈‍⬛

[7주차] 고양이 사진첩

생성일
Sep 21, 2021 01:31 AM
태그
퍼실리테이터

구조분해 패턴

nodes.setState({ nodes: nextState.nodes, isRoot: nextState.isRoot, isLoading: nextState.isLoading, }) imageViewer.setState({ selectedImageUrl: nextState.selectedImageUrl })
→
const {nodes, isRoot, isLoading, selectedImageUrl } = nextState; nodes.setState({ nodes, isRoot, isLoading }) imageViewer.setState({ selectedImageUrl })