Files
buuh/examples/http/views/main.js
T

15 lines
396 B
JavaScript
Raw Normal View History

2016-05-13 12:24:51 +07:00
const choo = require('../../../')
module.exports = function (params, state, send) {
2016-05-23 10:44:32 +09:00
const error = state.app.error[0]
const title = state.api.title
2016-05-13 12:24:51 +07:00
return choo.view`
<section>
2016-05-23 10:44:32 +09:00
<h1>${title}</h1>
<h2>Latest error: ${error}</h2>
2016-05-13 12:24:51 +07:00
<button onclick=${(e) => send('api:good')}>OK!</button>
<button onclick=${(e) => send('api:bad')}>Naughty</button>
</section>
`
}