Redux - nmallas/Netflix-Clone GitHub Wiki
Redux is used throughout the project to manage application state.
Current sample state:
`{
authentication: { id: 1, email: [email protected]},
profiles: {current: {
id: 45,
name: Nick,
imageLink: 4,
userId: 1,
watchListId: 47,
createdAt: "2020-09-07T20:48:00.368Z",
updatedAt: "2020-09-07T20:48:00.368Z"},
all: [{
id: 45,
name: Nick,
imageLink: 4,
userId: 1,
watchListId: 47,
createdAt: "2020-09-07T20:48:00.368Z",
updatedAt: "2020-09-07T20:48:00.368Z"
},
{
id: 49,
name: Johnathon,
imageLink: 3,
userId: 1,
watchListId: 51,
createdAt: "2020-09-10T02:13:46.434Z",
updatedAt: "2020-09-10T02:13:46.434Z"
}]},
watchlist: {id: 47}
}`