create design system categories components

This commit is contained in:
Tykayn 2025-08-14 14:46:35 +02:00 committed by tykayn
parent 2d4161ed40
commit 4a8c7d2a4b
85 changed files with 701 additions and 1 deletions

View file

@ -0,0 +1 @@
<p>index works!</p>

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Index } from './index';
describe('Index', () => {
let component: Index;
let fixture: ComponentFixture<Index>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Index]
})
.compileComponents();
fixture = TestBed.createComponent(Index);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'sae-index',
imports: [],
templateUrl: './index.html',
styleUrl: './index.css'
})
export class Index {
}

View file

@ -0,0 +1 @@
<p>tooltip works!</p>

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Tooltip } from './tooltip';
describe('Tooltip', () => {
let component: Tooltip;
let fixture: ComponentFixture<Tooltip>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Tooltip]
})
.compileComponents();
fixture = TestBed.createComponent(Tooltip);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'sae-tooltip',
imports: [],
templateUrl: './tooltip.html',
styleUrl: './tooltip.css'
})
export class Tooltip {
}