/todoapp

Todo Application

Primary LanguageTypeScript

A Todo app using TypeScript & ReactJS

Todo Application

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,
  },
];