diff --git a/apps/vault/app/index.html b/apps/vault/app/index.html
deleted file mode 100644
index 25afe6d..0000000
--- a/apps/vault/app/index.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
- Hello world!
-
-
diff --git a/apps/vault/app/script.js b/apps/vault/app/script.js
deleted file mode 100644
index d5f7bdb..0000000
--- a/apps/vault/app/script.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import Aragon from '@aragon/client'
-
-const app = new Aragon()
-
-const initialState = {
- dummyValue: 0
-}
-
-app.store((state, event) => {
- if (state === null) state = initialState
-
- switch (event.event) {
- case 'DummyEvent':
- return { dummyValue: 1 }
- default:
- return state
- }
-})