mirror of
https://github.com/hydra-synth/hydra.git
synced 2025-12-15 03:10:01 +01:00
14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
const devtools = require('choo-devtools')
|
|
const choo = require('choo')
|
|
const store = require('./src/store.js')
|
|
const mainView = require('./src/views/main.js')
|
|
|
|
const app = choo()
|
|
app.use(devtools())
|
|
app.use(store)
|
|
app.route('/', mainView)
|
|
app.mount('body')
|
|
|
|
|
|
|