blob: 967ad27d00b67e6201770e2cf9a6d10aecd93462 [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 css = require('./index.css');
var h = require('mercury').h;
var insert = require('insert-css');
module.exports = {
render: render
};
function render(state, channels) {
insert(css);
return h('header', [
h('a.title', {
href: '/#!/'
}, 'PDF Reader')
]);
}