Plik: app.module.txt

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms'; // Jeśli potrzebujemy formularzy
import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent, // Deklaracja komponentu głównego
  ],
  imports: [
    BrowserModule, // Moduł przeglądarki do renderowania aplikacji Angular
    FormsModule,   // Moduł obsługujący formularze (np. dwukierunkowe bindowanie)
  ],
  providers: [],
  bootstrap: [AppComponent] // Uruchamiany komponent
})
export class AppModule { }