Skip to content
Snippets Groups Projects
Select Git revision
  • d6eb0023a54645ff0330a30908d2a75ea66df31b
  • main default protected
  • Release_3
  • Release_2
  • microservices_split
  • Release_1
6 results

navigation.component.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    navigation.component.ts 250 B
    import { Component } from '@angular/core';
    
    @Component({
      selector: 'app-navigation',
      standalone: true,
      imports: [],
      templateUrl: './navigation.component.html',
      styleUrl: './navigation.component.css'
    })
    export class NavigationComponent {
    
    }