Last active
May 14, 2026 10:39
-
-
Save evoactivity/c803c9a6a7e2e2be33f6752c31bead3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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