update order of storybook categories
This commit is contained in:
parent
808b4b8f9e
commit
5494510ed5
4 changed files with 44 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
|||
<div class="button-displayer">
|
||||
<!-- <sae-main-button label="bouton large"></sae-main-button>-->
|
||||
<!-- <sae-main-button></sae-main-button>-->
|
||||
<!-- <sae-main-button></sae-main-button>-->
|
||||
</div>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ButtonDisplayer } from './button-displayer';
|
||||
|
||||
describe('ButtonDisplayer', () => {
|
||||
let component: ButtonDisplayer;
|
||||
let fixture: ComponentFixture<ButtonDisplayer>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ButtonDisplayer]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ButtonDisplayer);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
16
airwatch/src/app/common/button-displayer/button-displayer.ts
Normal file
16
airwatch/src/app/common/button-displayer/button-displayer.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import {Component} from '@angular/core';
|
||||
import {Index} from 'sae-lib/tabs/index';
|
||||
import {MainButton} from 'sae-lib/buttons/main-button/main-button';
|
||||
|
||||
@Component({
|
||||
selector: 'app-button-displayer',
|
||||
imports: [
|
||||
Index,
|
||||
MainButton
|
||||
],
|
||||
templateUrl: './button-displayer.html',
|
||||
styleUrl: './button-displayer.scss'
|
||||
})
|
||||
export class ButtonDisplayer {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue