7 lines
254 B
JavaScript
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>
|
|
`;
|
|
}
|