mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Add new shell domain with three feature libraries: - shell-layout: Main application layout container - shell-header: Application header component - shell-navigation: Navigation component All libraries configured with: - Standalone Angular components - Vitest with JUnit and Cobertura reporters - Architectural tags (scope:shell, type:feature)
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import { Component } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
@Component({
|
|
selector: 'shell-shell-layout',
|
|
imports: [CommonModule],
|
|
templateUrl: './shell-layout.component.html',
|
|
styleUrl: './shell-layout.component.css',
|
|
})
|
|
export class ShellLayoutComponent {}
|