diff --git a/airwatch/src/app/common/button-displayer/button-displayer.html b/airwatch/src/app/common/button-displayer/button-displayer.html new file mode 100644 index 0000000..0dad6d7 --- /dev/null +++ b/airwatch/src/app/common/button-displayer/button-displayer.html @@ -0,0 +1,5 @@ +
+ + + +
diff --git a/airwatch/src/app/common/button-displayer/button-displayer.scss b/airwatch/src/app/common/button-displayer/button-displayer.scss new file mode 100644 index 0000000..e69de29 diff --git a/airwatch/src/app/common/button-displayer/button-displayer.spec.ts b/airwatch/src/app/common/button-displayer/button-displayer.spec.ts new file mode 100644 index 0000000..59595d4 --- /dev/null +++ b/airwatch/src/app/common/button-displayer/button-displayer.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ButtonDisplayer } from './button-displayer'; + +describe('ButtonDisplayer', () => { + let component: ButtonDisplayer; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ButtonDisplayer] + }) + .compileComponents(); + + fixture = TestBed.createComponent(ButtonDisplayer); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/airwatch/src/app/common/button-displayer/button-displayer.ts b/airwatch/src/app/common/button-displayer/button-displayer.ts new file mode 100644 index 0000000..40d9b76 --- /dev/null +++ b/airwatch/src/app/common/button-displayer/button-displayer.ts @@ -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 { + +}