Skip to content

Commit 01dd2f5

Browse files
authored
fix(skeleton-text): use consistent naming for files (#2523)
1 parent 8cb2f33 commit 01dd2f5

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

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

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
```ts
2+
import { Component } from '@angular/core';
3+
4+
@Component({
5+
selector: 'app-example',
6+
templateUrl: 'example.component.html',
7+
styleUrls: ['example.component.css']
8+
})
9+
export class ExampleComponent {
10+
public loaded = false;
11+
}
12+
13+
```

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import javascript from './javascript.md';
44
import react from './react.md';
55
import vue from './vue.md';
66

7-
import angularHTML from './angular/angular-html.md';
8-
import angularTS from './angular/angular-ts.md';
7+
import angularHTML from './angular/example_component_html.md';
8+
import angularTS from './angular/example_component_ts.md';
99

1010
<Playground
1111
code={{
@@ -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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import Playground from '@site/src/components/global/Playground';
22

33
import javascript from './javascript.md';
44

5-
import reactTSX from './react/react-tsx.md';
6-
import reactCSS from './react/react-css.md';
5+
import reactTSX from './react/main_tsx.md';
6+
import reactCSS from './react/main_css.md';
77

88
import vue from './vue.md';
99

10-
import angularHTML from './angular/angular-html.md';
11-
import angularCSS from './angular/angular-css.md';
10+
import angularHTML from './angular/example_component_html.md';
11+
import angularCSS from './angular/example_component_css.md';
1212

1313
<Playground
1414
code={{
@@ -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)