"use strict"; // I M P O R T // import html from "choo/html"; import { html, raw } from 'hono/html' // E X P O R T export default links => { const renderedLinks = links.map(link => returnLinkTemplate(link.title, link.description, link.destination, link.label)); return html` `; }; // H E L P E R function returnLinkTemplate(title, description, destination, label) { return html` `; }