added future ui components file

This commit is contained in:
AdamBtech
2025-05-23 22:36:24 +02:00
parent 4f17b07f70
commit f19e4ae9f4
15 changed files with 60 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-chip-container',
imports: [],
templateUrl: './chip-container.component.html',
styleUrl: './chip-container.component.css'
})
export class ChipContainerComponent {
}

View File

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

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-container-decorator',
imports: [],
templateUrl: './container-decorator.component.html',
styleUrl: './container-decorator.component.css'
})
export class ContainerDecoratorComponent {
}

View File

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

View File

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

View File

@@ -0,0 +1 @@
<p>long-button-dark works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-long-button-dark',
imports: [],
templateUrl: './long-button-dark.component.html',
styleUrl: './long-button-dark.component.css'
})
export class LongButtonDarkComponent {
}

View File

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

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-long-button',
imports: [],
templateUrl: './long-button.component.html',
styleUrl: './long-button.component.css'
})
export class LongButtonComponent {
}