Skip to content

Commit 81f193a

Browse files
committed
fix(skeleton-text): use component name for files
1 parent 0506f01 commit 81f193a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

static/usage/skeleton-text/basic/angular/angular-ts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import { Component } from '@angular/core';
33

44
@Component({
5-
selector: 'app-root',
6-
templateUrl: 'app.component.html',
7-
styleUrls: ['app.component.css']
5+
selector: 'app-example',
6+
templateUrl: 'example.component.html',
7+
styleUrls: ['example.component.css']
88
})
9-
export class AppComponent {
9+
export class ExampleComponent {
1010
public loaded = false;
1111
}
1212

static/usage/skeleton-text/basic/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import angularTS from './angular/angular-ts.md';
1414
vue,
1515
angular: {
1616
files: {
17-
'src/app/app.component.html': angularHTML,
18-
'src/app/app.component.ts': angularTS
17+
'src/app/example.component.html': angularHTML,
18+
'src/app/example.component.ts': angularTS
1919
}
2020
},
2121
}}

static/usage/skeleton-text/theming/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import angularCSS from './angular/angular-css.md';
2222
vue,
2323
angular: {
2424
files: {
25-
'src/app/app.component.html': angularHTML,
26-
'src/app/app.component.css': angularCSS
25+
'src/app/example.component.html': angularHTML,
26+
'src/app/example.component.css': angularCSS
2727
}
2828
},
2929
}}

0 commit comments

Comments
 (0)