summaryrefslogtreecommitdiff
path: root/app/list.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/list.js')
-rw-r--r--app/list.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/list.js b/app/list.js
index 9042dd3..aea8949 100644
--- a/app/list.js
+++ b/app/list.js
@@ -1,6 +1,10 @@
+import { deleteButton } from "./delete.js";
+import { editButton } from "./edit.js";
+import { checkboxButton } from "./check.js";
+
const form = document.getElementById('form');
const list = document.getElementById('list');
-const jsList = JSON.parse(localStorage.getItem('jsList')) || []
+export const jsList = JSON.parse(localStorage.getItem('jsList')) || []
jsList.forEach(element => {
createElement(element);