-
Notifications
You must be signed in to change notification settings - Fork 0
Redux State Shape
Alice Li edited this page Jul 25, 2022
·
7 revisions
store = {
session: {},
currentUser: {
songDetail: {
songId: {
id,
userId: {userData of author},
title,
description,
album: {
albumId,
user: {userData of author}
}
comments: {
commentId: {
commentData,
user: {userData of author}
},
}
}
},
album: {
id: {
albumId,
userId: {userData of author},
title,
description
},
}
}
}