mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-12 19:00:39 -07:00
29 lines
483 B
JSON
29 lines
483 B
JSON
{
|
|
"categories": [{
|
|
"color": "red",
|
|
"id": "CAT1",
|
|
"title": "work"
|
|
}, {
|
|
"color": "red",
|
|
"id": "CAT2",
|
|
"title": "emergency"
|
|
}, {
|
|
"color": "green",
|
|
"id": "CAT3",
|
|
"title": "sport"
|
|
}],
|
|
"todos": [{
|
|
"title": "fork and clone",
|
|
"id": "TODO1",
|
|
"category": "work"
|
|
}, {
|
|
"title": "make it better",
|
|
"id": "TODO2",
|
|
"category": "sport"
|
|
}, {
|
|
"title": "make a pull request",
|
|
"id": "TODO3",
|
|
"category": "work"
|
|
}]
|
|
}
|