Skip to content

Commit

Permalink
fix: 馃悰 readme
Browse files Browse the repository at this point in the history
  • Loading branch information
avivharuzi committed Sep 23, 2023
1 parent a9f2604 commit b673dae
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ yarn install ngx-skeleton
Import `NgxSkeletonModule` into the current module's imports:

```ts
import { NgxSkeletonModule } from 'ngx-skeleton';
import {NgxSkeletonModule} from 'ngx-skeleton';

imports: [
// ...
Expand All @@ -55,14 +55,15 @@ imports: [
You can also import `NgxSkeletonComponent` as standalone component:

```ts
import { NgxSkeletonComponent } from 'ngx-skeleton';
import {NgxSkeletonComponent} from 'ngx-skeleton';

@Component({
standalone: true,
imports: [NgxSkeletonComponent],
// ...
})
export class MyComponent {}
export class MyComponent {
}
```

Use in your components (this is code example from demo page):
Expand Down

0 comments on commit b673dae

Please sign in to comment.