add components from angular-lib
This commit is contained in:
parent
3c429c42f4
commit
834d1521f0
100 changed files with 33352 additions and 0 deletions
12
implem/src/app/app.ts
Normal file
12
implem/src/app/app.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Component, signal } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet],
|
||||
templateUrl: './app.html',
|
||||
styleUrl: './app.scss'
|
||||
})
|
||||
export class App {
|
||||
protected readonly title = signal('implem');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue