Skip to content

Commit 1607135

Browse files
committed
Save
1 parent e3f532a commit 1607135

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

SOC.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ File Structure:
44
- Component.ts
55
- Style.ts
66
- Template.ts
7-
7+
88
Code:
9-
9+
1010
```js
1111
// Component.ts
1212

1313
import { LitElement, customElement } from "lit-element";
1414

15-
import Style from "./Style";
16-
import Template from "./Template";
15+
import style from "./Style";
16+
import template from "./Template";
1717

1818
@customElement("myfeature-component")
1919
export class MyFeature extends LitElement {
20-
public static styles = Style;
21-
public render = Template.bind(this);
20+
public static styles = style;
21+
public render = template.bind(this);
2222
}
2323

2424
// Style.ts
File renamed without changes.

atomic-design.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Components = molecules

0 commit comments

Comments
 (0)