From 73ebba2e7edf14abdd2cff69d19b9618e4df0d12 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Mon, 24 Nov 2025 15:50:16 +0200 Subject: [PATCH] fix: add missing .data/todos.json file Closes #2 --- .data/todos.json | 14 ++++++++++++++ .gitignore | 4 +--- 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 .data/todos.json diff --git a/.data/todos.json b/.data/todos.json new file mode 100644 index 0000000..77e2e39 --- /dev/null +++ b/.data/todos.json @@ -0,0 +1,14 @@ +[ + { + "id": "1", + "title": "Buy groceries", + "completed": false, + "createdAt": 1700000000000 + }, + { + "id": "2", + "title": "Write documentation", + "completed": true, + "createdAt": 1700000001000 + } +] \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7de4e56..d08ad59 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,4 @@ yarn-error.log* # typescript *.tsbuildinfo -next-env.d.ts - -todos.json \ No newline at end of file +next-env.d.ts \ No newline at end of file