"use strict"; // P A C K A G E const html = require("choo-async/html"); // P R O G R A M const navigation = (state, emit) => { // eslint-disable-line const renderedNavigationItems = navigationItems.map(navigationItem => { return `${navigationItem.name}`; }); return html` `; }; const navigationItems = [ { url: "/overview", name: "Overview", title: "LBRY overview" }, { url: "/resources", name: "Resources", title: "View LBRY resources" }, { url: "/contribute", name: "Contribute", title: "Contribute to LBRY" }, { url: "/build", name: "Build", title: "View LBRY resources" }, { url: "/community", name: "Community", title: "Interact with LBRY" } ]; // E X P O R T module.exports = exports = navigation;