Skip to content

Instantly share code, notes, and snippets.

@Aaron-CR
Created July 27, 2020 23:38
Show Gist options
  • Select an option

  • Save Aaron-CR/eb17bd7edc377d54b9cfa2b26f35ec44 to your computer and use it in GitHub Desktop.

Select an option

Save Aaron-CR/eb17bd7edc377d54b9cfa2b26f35ec44 to your computer and use it in GitHub Desktop.
App Module utilizado en el articulo 007-introduccion-a-los-modulos
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MaterialModule } from './material/material.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
MaterialModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment