We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f532a commit 1607135Copy full SHA for 1607135
SOC.md
@@ -4,21 +4,21 @@ File Structure:
4
- Component.ts
5
- Style.ts
6
- Template.ts
7
-
+
8
Code:
9
10
```js
11
// Component.ts
12
13
import { LitElement, customElement } from "lit-element";
14
15
-import Style from "./Style";
16
-import Template from "./Template";
+import style from "./Style";
+import template from "./Template";
17
18
@customElement("myfeature-component")
19
export class MyFeature extends LitElement {
20
- public static styles = Style;
21
- public render = Template.bind(this);
+ public static styles = style;
+ public render = template.bind(this);
22
}
23
24
// Style.ts
ApplyStyle renamed to apply-style.ts
atomic-design.md
@@ -0,0 +1 @@
1
+Components = molecules
0 commit comments