komponents erstellen
This commit is contained in:
1
src/app/shared/components/ui/alert/alert.component.html
Normal file
1
src/app/shared/components/ui/alert/alert.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>alert works!</p>
|
||||
11
src/app/shared/components/ui/alert/alert.component.ts
Normal file
11
src/app/shared/components/ui/alert/alert.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-alert',
|
||||
imports: [],
|
||||
templateUrl: './alert.component.html',
|
||||
styleUrl: './alert.component.css'
|
||||
})
|
||||
export class AlertComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>button works!</p>
|
||||
11
src/app/shared/components/ui/button/button.component.ts
Normal file
11
src/app/shared/components/ui/button/button.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-button',
|
||||
imports: [],
|
||||
templateUrl: './button.component.html',
|
||||
styleUrl: './button.component.css'
|
||||
})
|
||||
export class ButtonComponent {
|
||||
|
||||
}
|
||||
1
src/app/shared/components/ui/card/card.component.html
Normal file
1
src/app/shared/components/ui/card/card.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>card works!</p>
|
||||
11
src/app/shared/components/ui/card/card.component.ts
Normal file
11
src/app/shared/components/ui/card/card.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-card',
|
||||
imports: [],
|
||||
templateUrl: './card.component.html',
|
||||
styleUrl: './card.component.css'
|
||||
})
|
||||
export class CardComponent {
|
||||
|
||||
}
|
||||
1
src/app/shared/components/ui/chip/chip.component.html
Normal file
1
src/app/shared/components/ui/chip/chip.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>chip works!</p>
|
||||
11
src/app/shared/components/ui/chip/chip.component.ts
Normal file
11
src/app/shared/components/ui/chip/chip.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-chip',
|
||||
imports: [],
|
||||
templateUrl: './chip.component.html',
|
||||
styleUrl: './chip.component.css'
|
||||
})
|
||||
export class ChipComponent {
|
||||
|
||||
}
|
||||
1
src/app/shared/components/ui/icon/icon.component.html
Normal file
1
src/app/shared/components/ui/icon/icon.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>icon works!</p>
|
||||
11
src/app/shared/components/ui/icon/icon.component.ts
Normal file
11
src/app/shared/components/ui/icon/icon.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-icon',
|
||||
imports: [],
|
||||
templateUrl: './icon.component.html',
|
||||
styleUrl: './icon.component.css'
|
||||
})
|
||||
export class IconComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>status-pill works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-status-pill',
|
||||
imports: [],
|
||||
templateUrl: './status-pill.component.html',
|
||||
styleUrl: './status-pill.component.css'
|
||||
})
|
||||
export class StatusPillComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user