@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
17 lines • 467 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.htmlTemplate = htmlTemplate;
function htmlTemplate(markup, data) {
return `
<!doctype html>
<html>
<head>
<title>${data === null || data === void 0 ? void 0 : data.title}</title>
<meta charset="utf-8" />
</head>
<body>
${markup}
</body>
</html>`;
}
//# sourceMappingURL=html-template.js.map
;