2025-08-07 14:24:23 +02:00
|
|
|
import { Component, signal } from '@angular/core';
|
|
|
|
import { RouterOutlet } from '@angular/router';
|
2025-08-08 16:43:50 +02:00
|
|
|
import {TopNavigation} from './shared/navigation/top-navigation/top-navigation';
|
|
|
|
import {FeedbackButton} from 'sae-lib/buttons/feedback-button/feedback-button';
|
2025-08-08 12:36:41 +02:00
|
|
|
// import {SaeLib} from '@sae-lib/src/public-api';
|
2025-08-07 14:24:23 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
2025-08-08 16:43:50 +02:00
|
|
|
imports: [RouterOutlet, TopNavigation, FeedbackButton],
|
2025-08-07 14:24:23 +02:00
|
|
|
templateUrl: './app.html',
|
|
|
|
styleUrl: './app.scss'
|
|
|
|
})
|
|
|
|
export class App {
|
|
|
|
protected readonly title = signal('implem');
|
|
|
|
}
|