mirror of
https://github.com/marko-js/marko.git
synced 2026-01-25 15:03:04 +00:00
21 lines
622 B
JavaScript
21 lines
622 B
JavaScript
"use strict";
|
|
|
|
var marko_template = module.exports = require("marko/src/html").t(__filename),
|
|
marko_componentType = "/marko-test$1.0.0/components-compilation/fixtures-html/implicit-component/index.marko",
|
|
marko_renderer = require("marko/src/runtime/components/renderer");
|
|
|
|
function render(input, out, __component, component, state) {
|
|
var data = input;
|
|
|
|
out.w("<div></div>");
|
|
}
|
|
|
|
marko_template._ = marko_renderer(render, {
|
|
___implicit: true,
|
|
___type: marko_componentType
|
|
});
|
|
|
|
marko_template.meta = {
|
|
id: "/marko-test$1.0.0/components-compilation/fixtures-html/implicit-component/index.marko"
|
|
};
|