Skip to content

Commit

Permalink
chore(demo): Button remove unused imports (#9086)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlufy authored Sep 19, 2024
1 parent 5ce088a commit 4561195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import {Component} from '@angular/core';
import {changeDetection} from '@demo/emulate/change-detection';
import {encapsulation} from '@demo/emulate/encapsulation';
import {TuiButton} from '@taiga-ui/core';
import {TuiAsideItemDirective} from '@taiga-ui/layout';

@Component({
standalone: true,
imports: [TuiAsideItemDirective, TuiButton],
imports: [TuiButton],
templateUrl: './index.html',
styleUrls: ['./index.less'],
encapsulation,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import {Component} from '@angular/core';
import {changeDetection} from '@demo/emulate/change-detection';
import {encapsulation} from '@demo/emulate/encapsulation';
import {TuiButton} from '@taiga-ui/core';
import {TuiAsideItemDirective} from '@taiga-ui/layout';

@Component({
standalone: true,
imports: [TuiAsideItemDirective, TuiButton],
imports: [TuiButton],
templateUrl: './index.html',
styleUrls: ['./index.less'],
encapsulation,
Expand Down

0 comments on commit 4561195

Please sign in to comment.