Files
swisssign-challenge-ui/src/app/app.module.ts

24 lines
541 B
TypeScript
Raw Normal View History

import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
2025-01-23 11:10:23 +01:00
import {AppRoutingModule} from './app-routing.module';
import {AppComponent} from './app.component';
import {HelloComponent} from './hello/hello.component';
import {NavbarComponent} from './navbar/navbar.component';
2025-01-23 11:10:23 +01:00
@NgModule({
declarations: [
AppComponent,
HelloComponent
2025-01-23 11:10:23 +01:00
],
imports: [
BrowserModule,
AppRoutingModule,
NavbarComponent
2025-01-23 11:10:23 +01:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}