Skip to content

Instantly share code, notes, and snippets.

@evoactivity
Last active May 14, 2026 10:39
Show Gist options
  • Select an option

  • Save evoactivity/c803c9a6a7e2e2be33f6752c31bead3b to your computer and use it in GitHub Desktop.

Select an option

Save evoactivity/c803c9a6a7e2e2be33f6752c31bead3b to your computer and use it in GitHub Desktop.
const thing = <template>
<div>Hello</div>
</template>
const another = <template>
<thing />
</template>
<template>
<thing />
<another />
<div>{{hello}}</div>
</template>
export default class Comp extends Component {
<template>
<thing />
<another />
<div>{{hello}}</div>
</template>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment