mvtnhan / todoapp

Todo Application

Home Page:https://todoapp-mvtnhan.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Todo Application

https://todoapp-mvtnhan.vercel.app


Languages

Language:TypeScript 86.1%Language:HTML 9.9%Language:CSS 4.0%