You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Todo with object structure using Redux (todoRedux branch)
Todo object data structure (master branch)
{1591513897340: {id: 1591513897340,content: "sell a keyboard",done: false,},1591513897341: {id: 1591513897341,content: "buy a mouse",done: false,},1591513897343: {id: 1591513897343,content: "play a new game",done: true,},}
Todo array data structure (todoArray branch)
[{id: 1591513897340,content: "sell a keyboard",done: false,},{id: 1591513897341,content: "buy a mouse",done: false,},{id: 1591513897343,content: "play a new game",done: true,},];