EQ: add texts and stepper component
This commit is contained in:
parent
9de7b06579
commit
d176f57dc5
12 changed files with 241 additions and 58 deletions
|
|
@ -0,0 +1 @@
|
|||
<p>sae-stepper works!</p>
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { SaeStepper } from './sae-stepper';
|
||||
|
||||
describe('SaeStepper', () => {
|
||||
let component: SaeStepper;
|
||||
let fixture: ComponentFixture<SaeStepper>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [SaeStepper]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(SaeStepper);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
11
my-workspace/projects/sae-lib/sae-stepper/sae-stepper.ts
Normal file
11
my-workspace/projects/sae-lib/sae-stepper/sae-stepper.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-sae-stepper',
|
||||
imports: [],
|
||||
templateUrl: './sae-stepper.html',
|
||||
styleUrl: './sae-stepper.css'
|
||||
})
|
||||
export class SaeStepper {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue