From 1a6c9baf1f115fe3be9ed6799416a10a5e3361a0 Mon Sep 17 00:00:00 2001 From: Haythem Sellami Date: Tue, 9 Jul 2019 22:00:39 +0100 Subject: [PATCH] remove frontend files --- apps/vault/app/index.html | 6 ------ apps/vault/app/script.js | 18 ------------------ 2 files changed, 24 deletions(-) delete mode 100644 apps/vault/app/index.html delete mode 100644 apps/vault/app/script.js 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 - } -})