aboutsummaryrefslogtreecommitdiff
path: root/examples/with-nanostores/src/store/admins.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-nanostores/src/store/admins.js')
-rw-r--r--examples/with-nanostores/src/store/admins.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/with-nanostores/src/store/admins.js b/examples/with-nanostores/src/store/admins.js
deleted file mode 100644
index 8a4a6f4d2..000000000
--- a/examples/with-nanostores/src/store/admins.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import { computed } from 'nanostores';
-
-import { users } from './users.js';
-
-const admins = computed(users, (list) => list.filter((user) => user.isAdmin));
-
-export { admins };