Vault app #145

Closed
haythem96 wants to merge 10 commits from features/app-vault into master
2 changed files with 0 additions and 24 deletions
Showing only changes of commit 1a6c9baf1f - Show all commits

View File

@@ -1,6 +0,0 @@
<!doctype>
<html>
<body>
<h1>Hello world!</h1>
</body>
</html>

View File

@@ -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
}
})