simpleton-state-manager
Version:
A Simple State Manager for WebApp UI
20 lines • 650 B
JSON
[
{
"name": "Ben",
"categories": ["House", "Cars", "School", "Work"],
"priorities": ["High", "Medium", "Low"],
"todos": [
{ "title": "Take out the garbage", "category": "House", "status": "open" },
{ "title": "Wash Car", "category": "Cars", "status": "closed" },
{ "title": "Do Laundry", "category": "House", "status": "open" },
{ "title": "Do Homewoork", "category": "School", "status": "open" },
{ "title": "File Report", "category": "Work", "status": "open" }
]
},
{
"name": "Jerry",
"categories": ["House", "Cars", "Work"],
"priorities": ["High", "Medium", "Low"],
"todos": []
}
]