Files
plugin-html/test/multi-entry/fixtures/app/app.js
2023-05-02 05:05:42 +02:00

7 lines
254 B
JavaScript

export const bootstrap = (el,deps = [])=>{
el.innerHtml = `
<div>I'm "annoying" ${"in case we need to test \`string\` escaping."}. Hence this file \'tries\' to include all allowed forms of 'it'</div>
<div>Deps: ${deps}</div>
`;
}