7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
import s from "apigo.cc/gojs/service"
|
|
|
|
function main(args) {
|
|
return s.tpl('tpl/page.html', { title: 'Abc' }, {
|
|
bb: text => { return '<b>' + text + '</b>' }
|
|
})
|
|
} |