Nested Templates
const submit = (fn) => html`
<button type="submit" onclick=${fn}>Submit</button>
`;
function myCallback(host, event) {...}
html`
<form>
...
${submit(myCallback)}
</form>
`;Last updated
Was this helpful?
const submit = (fn) => html`
<button type="submit" onclick=${fn}>Submit</button>
`;
function myCallback(host, event) {...}
html`
<form>
...
${submit(myCallback)}
</form>
`;Last updated
Was this helpful?
Was this helpful?