|
|
||
|---|---|---|
| .. | ||
| ChangeLog | ||
| README.md | ||
| app-icon.js | ||
| app.js | ||
| app.png | ||
| metadata.json | ||
| screenshot1.png | ||
| screenshot2.png | ||
| screenshot3.png | ||
README.md
Todo List
This is a simple Todo List application.
The content is loaded from a JSON file.
You can mark a task as completed.
JSON file content example:
[
{
name: "Pro",
children: [
{
name: "Read doc",
done: true,
children: [],
}
],
},
{
name: "Pers",
children: [
{
name: "Grocery",
children: [
{ name: "Milk", done: false, children: [] },
{ name: "Eggs", done: false, children: [] },
{ name: "Cheese", done: false, children: [] },
],
},
{ name: "Workout", done: false, children: [] },
{ name: "Learn Rust", done: false, children: [] },
],
},
]
