Skip to content

thiteixeira/my-wifes-todo

Repository files navigation

Todo App

This is a different version of a common Todo App. The motivation for this project is my wife's own todo app, which is a very long Google Doc where she keeps tracks of daily taks, birthdays, payments, bank balances, and anything that you can imagine.

This project was bootstrapped with Create React App with Typescript. I am making use of the Hooks, Context, and Reducer APIs, as well as Material UI.

The app is hosted at https://mywifestodo.web.app/

Anatomy of a Todo

interface Todo {
  id: string;
  date: Date;
  type: TodoType;
  description: string;
  isPriority: boolean;
  isCompleted: boolean;
}

// Mostly used to add icons
enum TodoType {
  Birthday = "BIRTHDAY",
  Task = "TASK",
  Reminder = "REMINDER",
  Financial = "FINANCIAL",
  Other = "OTHER"
}

About

A more elaborate version of the Todo app

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published