Xrayya / dicoding-final-react-basic

Simple Note Taking App for Dicoding Final Submission

Home Page:https://dicoding-final-react-basic.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Final Project: Dicoding React Basic

Repository for the final project learning path "Learn Creating Web Application with React"
This is a Personal Note Taking App project

Tech Stack

Features:

Key:

  • Display note list
  • Add note
  • Delete note

Opt:

  • Search
  • Note title character limit (with indicator)
  • Archive

Potential Improvement

  • Save notes in localstorage
  • Save notes in database (needs back-end)
  • Add tag attribute to note
  • Pinned notes

Note

Model (current):

interface Note {
  id: number;
  title: string;
  body: string;
  archived: boolean;
  createdAt: Date;
}

About

Simple Note Taking App for Dicoding Final Submission

https://dicoding-final-react-basic.vercel.app

License:MIT License


Languages

Language:TypeScript 95.0%Language:HTML 2.4%Language:JavaScript 2.3%Language:CSS 0.3%