UNPKG

@benev/construct

Version:
18 lines (13 loc) 361 B
import {template, html, easypage, startup_scripts_with_dev_mode} from "@benev/turtle" export default template(async basic => { const path = basic.path(import.meta.url) return easypage({ path, css: "index.css", title: "@benev/construct", head: startup_scripts_with_dev_mode(path), body: html` <construct-editor></construct-editor> `, }) })