@benev/construct
Version:
game map editing suite for babylon
18 lines (13 loc) • 361 B
text/typescript
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>
`,
})
})