fullstackopen-notes/parts/2/renderingCollections/db.json

19 lines
388 B
JSON
Raw Normal View History

2025-05-25 12:44:07 +02:00
{
"notes": [
{
"id": "1",
"content": "HTML is easy",
"important": true
},
{
"id": "2",
"content": "Browser can execute only JavaScript",
"important": false
},
{
"id": "3",
"content": "GET and POST are the most important methods of HTTP protocol",
"important": true
}
]
}