2025-01-23 11:20:23 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
2025-01-23 11:10:23 +01:00
|
|
|
|
2025-01-23 11:20: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: [
|
2025-01-23 11:20:23 +01:00
|
|
|
AppComponent,
|
|
|
|
HelloComponent
|
2025-01-23 11:10:23 +01:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
2025-01-23 11:20:23 +01:00
|
|
|
AppRoutingModule,
|
|
|
|
NavbarComponent
|
2025-01-23 11:10:23 +01:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
2025-01-23 11:20:23 +01:00
|
|
|
export class AppModule {
|
|
|
|
}
|