Skip to content

Latest commit

 

History

History
executable file
·
23 lines (15 loc) · 860 Bytes

README.md

File metadata and controls

executable file
·
23 lines (15 loc) · 860 Bytes

React + MobX Todo with Multiple Tags

Original Repostiory

Original repository provides a reference implementation of the TodoMVC application written using MobX, React JSX and ES6.

Git

My changes

  • Enable users to specify one or more tags in order to categorize todo items. For example, if I create a todo item with the text "Contact candidates to explain the coding exercise", I might like to add a couple tags, one for "Hiring" and another for "Urgent".
  • Include an additional text box where the user can add new tags for a given item that's being edited.

Running the example

npm install
npm start
open http://localhost:3000

The example requires node 4.0 or higher

TodoMVC