create design system categories components
This commit is contained in:
parent
2d4161ed40
commit
4a8c7d2a4b
85 changed files with 701 additions and 1 deletions
|
@ -0,0 +1 @@
|
|||
<p>checkbox works!</p>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Checkbox } from './checkbox';
|
||||
|
||||
describe('Checkbox', () => {
|
||||
let component: Checkbox;
|
||||
let fixture: ComponentFixture<Checkbox>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Checkbox]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Checkbox);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
my-workspace/projects/sae-lib/buttons/checkbox/checkbox.ts
Normal file
11
my-workspace/projects/sae-lib/buttons/checkbox/checkbox.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'sae-checkbox',
|
||||
imports: [],
|
||||
templateUrl: './checkbox.html',
|
||||
styleUrl: './checkbox.css'
|
||||
})
|
||||
export class Checkbox {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue