Skip to content

Instantly share code, notes, and snippets.

@blois
Last active November 20, 2019 20:54
Show Gist options
  • Save blois/d77ed5dd454ce631a16ce7287d2dd428 to your computer and use it in GitHub Desktop.
Save blois/d77ed5dd454ce631a16ce7287d2dd428 to your computer and use it in GitHub Desktop.
import * as test from 'https://www.npmjs.com/package/test'
export function renderMime({node, data}) {
const widget = test.render(node, data);
return {
onData(newData) {
widget.update(newData);
},
onCleanup() {
widget.remove();
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment