Files
onefinity-firmware/src/js/help-view.js
2022-12-21 16:26:22 +05:30

15 lines
313 B
JavaScript

module.exports = {
template: "#help-view-template",
attached: function() {
this.svelteComponent = SvelteComponents.createComponent(
"HelpView",
document.getElementById("help")
);
},
detached: function() {
this.svelteComponent.$destroy();
}
};