Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions static/usage/skeleton-text/basic/angular/angular-ts.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
```ts
import { Component } from '@angular/core';

@Component({
selector: 'app-example',
templateUrl: 'example.component.html',
styleUrls: ['example.component.css']
})
export class ExampleComponent {
public loaded = false;
}

```
4 changes: 2 additions & 2 deletions static/usage/skeleton-text/basic/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import angularTS from './angular/angular-ts.md';
vue,
angular: {
files: {
'src/app/app.component.html': angularHTML,
'src/app/app.component.ts': angularTS
'src/app/example.component.html': angularHTML,
'src/app/example.component.ts': angularTS
}
},
}}
Expand Down
12 changes: 6 additions & 6 deletions static/usage/skeleton-text/theming/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import Playground from '@site/src/components/global/Playground';

import javascript from './javascript.md';

import reactTSX from './react/react-tsx.md';
import reactCSS from './react/react-css.md';
import reactTSX from './react/main-tsx.md';
import reactCSS from './react/main-css.md';

import vue from './vue.md';

import angularHTML from './angular/angular-html.md';
import angularCSS from './angular/angular-css.md';
import angularHTML from './angular/example_component-html.md';
import angularCSS from './angular/example_component-css.md';

<Playground
code={{
Expand All @@ -22,8 +22,8 @@ import angularCSS from './angular/angular-css.md';
vue,
angular: {
files: {
'src/app/app.component.html': angularHTML,
'src/app/app.component.css': angularCSS
'src/app/example.component.html': angularHTML,
'src/app/example.component.css': angularCSS
}
},
}}
Expand Down