Skip to content

Commit

Permalink
test: another test!
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson committed Dec 19, 2024
1 parent 01faeba commit fa37b85
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<x-component>
<template shadowrootmode="open">
<div>
foobar
</div>
</template>
</x-component>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const tagName = 'x-component';
export { default } from 'x/component';
export * from 'x/component';
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<div>Hello from the subclass {hello}</div>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import FancyElement from 'x/fancyElement';

export default class extends FancyElement {
hello = 'foobar';
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { LightningElement } from 'lwc';
import tmpl from './tmpl.html';

export default class extends LightningElement {
render() {
return tmpl;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<div>{hello}</div>
</template>

0 comments on commit fa37b85

Please sign in to comment.