Skip to content

Instantly share code, notes, and snippets.

@nalinbhardwaj
Last active March 7, 2022 07:46
Show Gist options
  • Save nalinbhardwaj/c952adb7b735c1c6def865e75295394d to your computer and use it in GitHub Desktop.
Save nalinbhardwaj/c952adb7b735c1c6def865e75295394d to your computer and use it in GitHub Desktop.
testing exgrasia frontend plugins
class Plugin {
constructor() {
this.yo = 1;
}
async render(coords) {
console.log('gm', gm);
return {__html: 'hello from the <b>other</b> side'};
}
destroy() {
console.log('destroyed');
}
}
export default Plugin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment