Guest User

Untitled

a guest
Feb 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class YourUI extends UIElement {
  2. template () {
  3. return `<div class="your-ui"></div>`
  4. }
  5. }
  6.  
  7. class MyUI extends UIElement {
  8. components () {
  9. return { YourUI }
  10. }
  11. template() {
  12. return `
  13. <div class='my-ui'>
  14. <YourUI />
  15. </div>
  16. `
  17. }
  18. }
Add Comment
Please, Sign In to add comment