Skip to content

Commit

Permalink
fix(skeleton-text): use consistent naming for files (#2523)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi authored Sep 1, 2022
1 parent 8cb2f33 commit 01dd2f5
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
13 changes: 0 additions & 13 deletions static/usage/skeleton-text/basic/angular/angular-ts.md

This file was deleted.

13 changes: 13 additions & 0 deletions static/usage/skeleton-text/basic/angular/example_component_ts.md
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;
}

```
8 changes: 4 additions & 4 deletions static/usage/skeleton-text/basic/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import javascript from './javascript.md';
import react from './react.md';
import vue from './vue.md';

import angularHTML from './angular/angular-html.md';
import angularTS from './angular/angular-ts.md';
import angularHTML from './angular/example_component_html.md';
import angularTS from './angular/example_component_ts.md';

<Playground
code={{
Expand All @@ -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

1 comment on commit 01dd2f5

@vercel
Copy link

@vercel vercel bot commented on 01dd2f5 Sep 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ionic-docs – ./

ionic-docs-gqykycf8t.vercel.app
ionic-docs-git-main-ionic1.vercel.app
ionic-docs-ionic1.vercel.app

Please sign in to comment.