ADD: general changes + changelog
This commit is contained in:
@@ -1,26 +1,27 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule, provideClientHydration } from '@angular/platform-browser';
|
||||
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 { EntityComponent } from './entity/entity.component';
|
||||
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,
|
||||
EntityComponent
|
||||
EntityDataComponent,
|
||||
EntityOutputComponent,
|
||||
OutputComponent,
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
FormsModule,
|
||||
],
|
||||
providers: [
|
||||
provideClientHydration()
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
imports: [BrowserModule, AppRoutingModule, FormsModule],
|
||||
providers: [provideClientHydration()],
|
||||
bootstrap: [AppComponent],
|
||||
})
|
||||
export class AppModule { }
|
||||
export class AppModule {}
|
||||
|
||||
Reference in New Issue
Block a user