mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
21 lines
420 B
JavaScript
21 lines
420 B
JavaScript
function create(__markoHelpers) {
|
|
var marko_loadTag = __markoHelpers.t,
|
|
test_hello = marko_loadTag(require("./tags/test-hello/renderer"));
|
|
|
|
return function render(data, out) {
|
|
test_hello({
|
|
name: "Frank"
|
|
}, out);
|
|
|
|
test_hello({
|
|
name: "Frank"
|
|
}, out);
|
|
|
|
test_hello({
|
|
name: "Frank"
|
|
}, out);
|
|
};
|
|
}
|
|
|
|
module.exports = require("marko/html").c(__filename, create);
|