app.module modificato per lista-eventi.component

app.module modificato per lista-eventi.component

[vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”no” type=”full_width” angled_section=”no” text_align=”left” background_image_as_pattern=”without_pattern”][vc_column][vc_column_text el_class=”mycode”]import { BrowserModule } from ‘@angular/platform-browser’;
import { NgModule } from ‘@angular/core’;

import { AppRoutingModule } from ‘./app-routing.module’;
import { AppComponent } from ‘./app.component’;
import { ListaEventiComponent } from ‘./components/lista-eventi/lista-eventi.component’;
import { BrowserAnimationsModule } from ‘@angular/platform-browser/animations’;

@NgModule({
  declarations: [
    AppComponent,
    ListaEventiComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    BrowserAnimationsModule

],

  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

[/vc_column_text][/vc_column][/vc_row]

No Comments

Sorry, the comment form is closed at this time.