blob: 2727cd6c84059abe28eb1c8a56fd8e6872c9143d [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var h = require('mercury').h;
module.exports = {
render: render
};
function render(state, chanels) {
return h('header', [
h('h1', state.title)
]);
}