remove frontend files

This commit is contained in:
haythem 2019-07-09 22:00:39 +01:00
parent 0320fa59f6
commit 1a6c9baf1f
2 changed files with 0 additions and 24 deletions

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