marko
Version:
UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.
11 lines (9 loc) • 302 B
JavaScript
var registry = require("@internal/components-registry");
exports.getComponentForEl =
require("@internal/components-util").___getComponentForEl;
exports.init = registry.___initServerRendered;
exports.register = function (id, component) {
registry.r(id, function () {
return component;
});
};