"use strict";
// P A C K A G E
import html from "choo/html";
// V A R I A B L E S
import footer from "./footer";
import Navigation from "./navigation";
const navigation = new Navigation();
// E X P O R T
module.exports = exports = children => (state, emit) => {
return html`
${navigation.render({ href: state.href || "/" })}
${children(state, emit)}
${footer(state, emit)}
`;
};