Files
ISA-Frontend/libs/shell/layout/src/lib/shell-layout/shell-layout.component.ts
Lorenz Hilpert e5dd1e312d feat(shell): scaffold shell-layout, shell-header, and shell-navigation libraries
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)
2025-12-02 16:14:35 +01:00

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 {}