"use strict"; // I M P O R T import asyncHtml from "choo-async/html"; // U T I L S import config from "~root/config"; import footer from "./footer"; import navigation from "./navigation"; // E X P O R T export default children => (state, emit) => { return asyncHtml`
${navigation(state.href)} ${children.default(state, emit)} ${footer(state, emit)}
`; };