상태 정규화
const blogPosts = [
{
id: "post1",
author: {username: "user1", name:"u1"},
body: ";..",
commnets: [
{
id: "comment1",
author: {..},
comment: ".."
},
{
...
}
]
},
{
id: "post2",
...
}
]정규화된 상태 설계
state에서 정규화된 데이터 구성하기
Relationships and Tables
Normalizing Nested Data
Last updated
Was this helpful?