wip fields Eqlair
This commit is contained in:
parent
74fa59a2e1
commit
870edba462
7 changed files with 133 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
:host {
|
||||
.wip-block {
|
||||
background: #f3fbff;
|
||||
padding: 2rem;
|
||||
border-radius: 0.5rem;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
<div class="wip-block">
|
||||
<ng-content></ng-content>
|
||||
</div>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { WipBlock } from './wip-block';
|
||||
|
||||
describe('WipBlock', () => {
|
||||
let component: WipBlock;
|
||||
let fixture: ComponentFixture<WipBlock>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [WipBlock]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(WipBlock);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/layouts/wip-block/wip-block.ts
Normal file
11
my-workspace/projects/sae-lib/layouts/wip-block/wip-block.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-wip-block',
|
||||
imports: [],
|
||||
templateUrl: './wip-block.html',
|
||||
styleUrl: './wip-block.scss'
|
||||
})
|
||||
export class WipBlock {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue