Dylan Piercey 1a52263af0
Refactor helpers, fix circular deps, improve code splitting (#1468)
* Refactor helpers, fix circular deps, improve code splitting
2019-12-31 11:02:33 -07:00

25 lines
733 B
JavaScript

"use strict";
var marko_template = module.exports = require("marko/src/html").t(__filename),
marko_component = {
foo: function() {},
bar: function() {}
},
marko_componentType = "/marko-test$1.0.0/components-compilation/fixtures-html/component-inline-class/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, {
___type: marko_componentType
}, marko_component);
marko_template.meta = {
id: "/marko-test$1.0.0/components-compilation/fixtures-html/component-inline-class/index.marko",
component: "./"
};