28 lines
878 B
TypeScript
28 lines
878 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import {
|
|
BrowserModule,
|
|
provideClientHydration,
|
|
} from '@angular/platform-browser';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { GeneratorComponent } from './generator/generator.component';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { EntityDataComponent } from './entity-data/entity-data.component';
|
|
import { EntityOutputComponent } from './entity-output/entity-output.component';
|
|
import { OutputComponent } from './output/output.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
GeneratorComponent,
|
|
EntityDataComponent,
|
|
EntityOutputComponent,
|
|
OutputComponent,
|
|
],
|
|
imports: [BrowserModule, AppRoutingModule, FormsModule],
|
|
providers: [provideClientHydration()],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|